HomeSort by relevance Sort by last modified time
    Searched refs:protection (Results 1 - 25 of 44) sorted by null

1 2

  /external/lldb/tools/debugserver/source/MacOSX/
MachVMRegion.cpp 104 if (m_curr_protection != m_data.protection && m_protection_size > 0)
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);
113 m_curr_protection = m_data.protection;
162 m_data.protection,
176 m_curr_protection = m_data.protection;
195 if ((m_data.protection & VM_PROT_READ) == VM_PROT_READ)
197 if ((m_data.protection & VM_PROT_WRITE) == VM_PROT_WRITE)
199 if ((m_data.protection & VM_PROT_EXECUTE) == VM_PROT_EXECUTE)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_procmaps_mac.cc 77 char filename[], uptr filename_size, uptr *protection) {
84 if (protection) {
85 // Return the initial protection.
86 *protection = sc->initprot;
107 uptr *protection) {
139 start, end, offset, filename, filename_size, protection))
146 start, end, offset, filename, filename_size, protection))
sanitizer_procmaps_linux.cc 162 uptr *protection) {
169 if (!protection) protection = &dummy;
177 *protection = 0;
179 *protection |= kProtectionRead;
181 *protection |= kProtectionWrite;
183 *protection |= kProtectionExecute;
202 *protection = 0;
204 *protection |= kProtectionRead;
207 *protection |= kProtectionWrite
    [all...]
sanitizer_procmaps.h 36 char filename[], uptr filename_size, uptr *protection);
47 // Memory protection masks.
69 uptr *protection);
  /external/chromium_org/ppapi/proxy/
file_mapping_resource.h 33 uint32_t protection,
63 uint32_t protection,
file_mapping_resource.cc 34 uint32_t protection,
57 if (protection &
79 length, protection, flags, offset));
  /external/chromium_org/third_party/tcmalloc/chromium/src/
malloc_hook-inl.h 191 int protection,
196 InvokePreMmapHookSlow(start, size, protection, flags, fd, offset);
201 protection, flags,
214 int protection,
219 InvokeMmapHookSlow(result, start, size, protection, flags, fd, offset);
225 protection, flags,
232 int protection,
239 protection, flags,
malloc_hook.cc 122 int protection,
127 MallocHook::InvokePreMmapHook(start, size, protection, flags, fd, offset);
534 int protection,
538 INVOKE_HOOKS(PreMmapHook, premmap_hooks_, (start, size, protection, flags, fd,
545 int protection,
549 INVOKE_HOOKS(MmapHook, mmap_hooks_, (result, start, size, protection, flags,
555 int protection,
561 (start, size, protection, flags, fd, offset, result));
  /external/chromium_org/third_party/tcmalloc/vendor/src/
malloc_hook-inl.h 191 int protection,
196 InvokePreMmapHookSlow(start, size, protection, flags, fd, offset);
201 protection, flags,
214 int protection,
219 InvokeMmapHookSlow(result, start, size, protection, flags, fd, offset);
225 protection, flags,
232 int protection,
239 protection, flags,
malloc_hook.cc 122 int protection,
127 MallocHook::InvokePreMmapHook(start, size, protection, flags, fd, offset);
534 int protection,
538 INVOKE_HOOKS(PreMmapHook, premmap_hooks_, (start, size, protection, flags, fd,
545 int protection,
549 INVOKE_HOOKS(MmapHook, mmap_hooks_, (result, start, size, protection, flags,
555 int protection,
561 (start, size, protection, flags, fd, offset, result));
  /external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
malloc_hook_c.h 84 int protection,
96 int protection,
107 int protection,
malloc_hook.h 134 int protection,
158 int protection,
177 int protection,
321 int protection,
328 int protection,
334 int protection,
  /external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
malloc_hook_c.h 84 int protection,
96 int protection,
107 int protection,
malloc_hook.h 134 int protection,
158 int protection,
177 int protection,
321 int protection,
328 int protection,
334 int protection,
  /external/chromium_org/v8/src/
platform-cygwin.cc 209 static void* RandomizedVirtualAlloc(size_t size, int action, int protection) {
212 if (protection == PAGE_EXECUTE_READWRITE || protection == PAGE_NOACCESS) {
215 base = VirtualAlloc(GetRandomAddr(), size, action, protection);
220 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection);
platform-win32.cc 739 static void* RandomizedVirtualAlloc(size_t size, int action, int protection) {
742 if (protection == PAGE_EXECUTE_READWRITE || protection == PAGE_NOACCESS) {
745 base = VirtualAlloc(OS::GetRandomMmapAddr(), size, action, protection);
750 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection);
    [all...]
  /external/valgrind/main/coregrind/
pub_core_threadstate.h 231 UWord protection; member in struct:__anon36436::__anon36437::__anon36449
253 UWord protection; member in struct:__anon36436::__anon36437::__anon36454
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/interface/
video_coding.h 247 // Register a video protection callback which will be called to deliver
251 // - protection : The callback object to register.
255 virtual int32_t RegisterProtectionCallback(VCMProtectionCallback* protection) = 0;
257 // Enable or disable a video protection method.
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
video_coding_impl.cc 168 virtual int32_t RegisterProtectionCallback(VCMProtectionCallback* protection)
170 return sender_->RegisterProtectionCallback(protection);
video_coding_impl.h 86 int32_t RegisterProtectionCallback(VCMProtectionCallback* protection);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
genopcode.asm 109 ;; TODO: add protection control
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 1583 PeepholeProtection protection; local
    [all...]
  /external/lldb/examples/darwin/heap_find/heap/
heap_find.cpp 644 if (vm_region_info.protection & VM_PROT_WRITE &&
645 vm_region_info.protection & VM_PROT_READ)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
malloc_hook_test.cc 305 int protection,
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
malloc_hook_test.cc 305 int protection,

Completed in 654 milliseconds

1 2