Home | History | Annotate | Download | only in m_syswrap

Lines Matching refs:mach_vm_protect

6101 PRE(mach_vm_protect)
6116 PRINT("mach_vm_protect(%s, at 0x%llx, size %lld, set_max %d, prot %d)",
6120 MACH_ARG(mach_vm_protect.address) = req->address;
6121 MACH_ARG(mach_vm_protect.size) = req->size;
6122 MACH_ARG(mach_vm_protect.set_maximum) = req->set_maximum;
6123 MACH_ARG(mach_vm_protect.new_protection) = req->new_protection;
6125 AFTER = POST_FN(mach_vm_protect);
6128 POST(mach_vm_protect)
6143 Addr start = VG_PGROUNDDN(MACH_ARG(mach_vm_protect.address));
6144 Addr end = VG_PGROUNDUP(MACH_ARG(mach_vm_protect.address) +
6145 MACH_ARG(mach_vm_protect.size));
6146 UInt prot = MACH_ARG(mach_vm_protect.new_protection);
6147 if (MACH_ARG(mach_vm_protect.set_maximum)) {
7032 CALL_PRE(mach_vm_protect);