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

/external/lldb/tools/debugserver/source/MacOSX/
H A DMachVMRegion.cpp74 m_err = ::mach_vm_protect (m_task, addr, prot_size, 0, prot);
76 m_err.LogThreaded("::mach_vm_protect ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, set_max = %i, prot = %u )", m_task, (uint64_t)addr, (uint64_t)prot_size, 0, prot);
80 m_err = ::mach_vm_protect (m_task, addr, prot_size, 0, prot | VM_PROT_COPY);
82 m_err.LogThreaded("::mach_vm_protect ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, set_max = %i, prot = %u )", m_task, (uint64_t)addr, (uint64_t)prot_size, 0, prot | VM_PROT_COPY);
106 m_err = ::mach_vm_protect (m_task, m_protection_addr, m_protection_size, 0, m_data.protection);
108 m_err.LogThreaded("::mach_vm_protect ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, set_max = %i, prot = %u )", m_task, (uint64_t)m_protection_addr, (uint64_t)m_protection_size, 0, m_data.protection);
H A DMachTask.cpp913 err = ::mach_vm_protect (task, addr, size, 0, mach_prot);
944 ::mach_vm_protect (task, (*pos).first, (*pos).second, 0, VM_PROT_NONE);
/external/valgrind/coregrind/
H A Dpub_core_threadstate.h233 } mach_vm_protect; member in union:__anon16202::__anon16203
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-darwin.c6819 PRE(mach_vm_protect)
6834 PRINT("mach_vm_protect(%s, at 0x%llx, size %lld, set_max %d, prot %d)",
6838 MACH_ARG(mach_vm_protect.address) = req->address;
6839 MACH_ARG(mach_vm_protect.size) = req->size;
6840 MACH_ARG(mach_vm_protect.set_maximum) = req->set_maximum;
6841 MACH_ARG(mach_vm_protect.new_protection) = req->new_protection;
6843 AFTER = POST_FN(mach_vm_protect);
6846 POST(mach_vm_protect)
6861 Addr start = VG_PGROUNDDN(MACH_ARG(mach_vm_protect.address));
6862 Addr end = VG_PGROUNDUP(MACH_ARG(mach_vm_protect
[all...]
H A Dpriv_syswrap-darwin.h617 DECL_TEMPLATE(darwin, mach_vm_protect);

Completed in 141 milliseconds