Home
last modified time | relevance | path

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

/external/lldb/tools/debugserver/source/MacOSX/
DMachVMRegion.cpp74 m_err = ::mach_vm_protect (m_task, addr, prot_size, 0, prot); in SetProtections()
80 m_err = ::mach_vm_protect (m_task, addr, prot_size, 0, prot | VM_PROT_COPY); in SetProtections()
106 … m_err = ::mach_vm_protect (m_task, m_protection_addr, m_protection_size, 0, m_data.protection); in RestoreProtections()
DMachTask.cpp913 err = ::mach_vm_protect (task, addr, size, 0, mach_prot); in AllocateMemory()
944 ::mach_vm_protect (task, (*pos).first, (*pos).second, 0, VM_PROT_NONE); in DeallocateMemory()
/external/valgrind/coregrind/
Dpub_core_threadstate.h233 } mach_vm_protect; member
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-darwin.c7147 PRE(mach_vm_protect) in PRE() argument
7166 MACH_ARG(mach_vm_protect.address) = req->address; in PRE()
7167 MACH_ARG(mach_vm_protect.size) = req->size; in PRE()
7168 MACH_ARG(mach_vm_protect.set_maximum) = req->set_maximum; in PRE()
7169 MACH_ARG(mach_vm_protect.new_protection) = req->new_protection; in PRE()
7171 AFTER = POST_FN(mach_vm_protect); in PRE()
7174 POST(mach_vm_protect) in POST() argument
7189 Addr start = VG_PGROUNDDN(MACH_ARG(mach_vm_protect.address)); in POST()
7190 Addr end = VG_PGROUNDUP(MACH_ARG(mach_vm_protect.address) + in POST()
7191 MACH_ARG(mach_vm_protect.size)); in POST()
[all …]
Dpriv_syswrap-darwin.h640 DECL_TEMPLATE(darwin, mach_vm_protect);