Home
last modified time | relevance | path

Searched refs:vm_protect (Results 1 – 5 of 5) sorted by relevance

/external/google-breakpad/src/client/mac/handler/
Dprotected_memory_allocator.cc74 kern_return_t result = vm_protect(mach_task_self(), in Protect()
85 kern_return_t result = vm_protect(mach_task_self(), in Unprotect()
/external/llvm/lib/Support/Unix/
DMemory.inc224 kern_return_t kr = vm_protect(mach_task_self(), (vm_address_t)pa,
228 MakeErrMsg(ErrMsg, "vm_protect max RX failed");
232 kr = vm_protect(mach_task_self(), (vm_address_t)pa,
236 MakeErrMsg(ErrMsg, "vm_protect RW failed");
259 kern_return_t kr = vm_protect(mach_task_self(), (vm_address_t)M.Address,
271 kern_return_t kr = vm_protect(mach_task_self(), (vm_address_t)M.Address,
281 kern_return_t kr = vm_protect(mach_task_self(), (vm_address_t)Addr,
292 kern_return_t kr = vm_protect(mach_task_self(), (vm_address_t)Addr,
/external/valgrind/coregrind/
Dpub_core_threadstate.h198 } vm_protect; member
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-darwin.c6453 PRE(vm_protect) in PRE() argument
6473 MACH_ARG(vm_protect.address) = req->address; in PRE()
6474 MACH_ARG(vm_protect.size) = req->size; in PRE()
6475 MACH_ARG(vm_protect.set_maximum) = req->set_maximum; in PRE()
6476 MACH_ARG(vm_protect.new_protection) = req->new_protection; in PRE()
6478 AFTER = POST_FN(vm_protect); in PRE()
6481 POST(vm_protect) in POST() argument
6496 Addr start = VG_PGROUNDDN(MACH_ARG(vm_protect.address)); in POST()
6497 Addr end = VG_PGROUNDUP(MACH_ARG(vm_protect.address) + in POST()
6498 MACH_ARG(vm_protect.size)); in POST()
[all …]
Dpriv_syswrap-darwin.h627 DECL_TEMPLATE(darwin, vm_protect);