taglinefilesource code
newflags54mm/mprotect.cint newflags, int prot)
newflags56mm/mprotect.cvma->vm_flags = newflags;
newflags64mm/mprotect.cint newflags, int prot)
newflags75mm/mprotect.cn->vm_flags = newflags;
newflags86mm/mprotect.cint newflags, int prot)
newflags97mm/mprotect.cn->vm_flags = newflags;
newflags108mm/mprotect.cint newflags, int prot)
newflags115mm/mprotect.cvma->vm_flags = newflags;
newflags124mm/mprotect.cunsigned long start, unsigned long end, unsigned int newflags)
newflags128mm/mprotect.cif (newflags == vma->vm_flags)
newflags131mm/mprotect.cif (newflags & (VM_READ | VM_EXEC))
newflags133mm/mprotect.cif (newflags & VM_WRITE)
newflags134mm/mprotect.cif (newflags & VM_SHARED)
newflags141mm/mprotect.cerror = mprotect_fixup_all(vma, newflags, prot);
newflags143mm/mprotect.cerror = mprotect_fixup_start(vma, end, newflags, prot);
newflags145mm/mprotect.cerror = mprotect_fixup_end(vma, start, newflags, prot);
newflags147mm/mprotect.cerror = mprotect_fixup_middle(vma, start, end, newflags, prot);
newflags182mm/mprotect.cunsigned int newflags;
newflags184mm/mprotect.cnewflags = prot | (vma->vm_flags & ~(PROT_READ | PROT_WRITE | PROT_EXEC));
newflags185mm/mprotect.cif ((newflags & ~(newflags >> 4)) & 0xf)
newflags189mm/mprotect.creturn mprotect_fixup(vma, start, end, newflags);
newflags191mm/mprotect.cerror = mprotect_fixup(vma, start, vma->vm_end, newflags);