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

1 2

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_procmaps_linux.cc 31 uptr *protection) {
38 if (!protection) protection = &dummy;
48 *protection = 0;
50 *protection |= kProtectionRead;
53 *protection |= kProtectionWrite;
56 *protection |= kProtectionExecute;
59 *protection |= kProtectionShared;
sanitizer_procmaps_freebsd.cc 53 uptr *protection) {
60 if (!protection) protection = &dummy;
67 *protection = 0;
69 *protection |= kProtectionRead;
71 *protection |= kProtectionWrite;
73 *protection |= kProtectionExecute;
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.h 39 char filename[], uptr filename_size, uptr *protection);
50 // Memory protection masks.
72 uptr *protection);
  /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/v8/src/base/platform/
platform-cygwin.cc 182 static void* RandomizedVirtualAlloc(size_t size, int action, int protection) {
185 if (protection == PAGE_EXECUTE_READWRITE || protection == PAGE_NOACCESS) {
188 base = VirtualAlloc(OS::GetRandomMmapAddr(), size, action, protection);
193 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection);
platform-win32.cc 757 static void* RandomizedVirtualAlloc(size_t size, int action, int protection) {
760 if (protection == PAGE_EXECUTE_READWRITE || protection == PAGE_NOACCESS) {
763 base = VirtualAlloc(OS::GetRandomMmapAddr(), size, action, protection);
768 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection);
    [all...]
  /external/valgrind/coregrind/
pub_core_threadstate.h 215 UWord protection; member in struct:__anon20511::__anon20512::__anon20524
237 UWord protection; member in struct:__anon20511::__anon20512::__anon20529
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 1659 PeepholeProtection protection; local
    [all...]
CodeGenFunction.h 731 CodeGenFunction::PeepholeProtection Protection;
777 data.Protection = CGF.protectFromPeepholes(rv);
792 CGF.unprotectFromPeepholes(Protection);
    [all...]
  /external/google-breakpad/src/processor/
minidump.cc 3719 uint32_t protection = local
3728 uint32_t 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/google-breakpad/src/google_breakpad/common/
minidump_format.h 827 uint32_t protection; \/* MDMemoryProtection *\/ member in struct:__anon9530
    [all...]
  /ndk/build/core/
default-build-commands.mk 56 # This flag are used to provide compiler protection against format
  /frameworks/av/media/libstagefright/
avc_utils.cpp 632 unsigned protection __unused = (header >> 16) & 1;
  /bionic/linker/
linker.cpp 801 void protect_data(int protection) {
802 g_soinfo_allocator.protect_all(protection);
803 g_soinfo_links_allocator.protect_all(protection);
    [all...]
  /external/dnsmasq/contrib/dnslist/
dnslist.pl 311 Also, for each author's protection and ours, we want to make certain
356 you may at your option offer warranty protection in exchange for a fee.
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/
wikipedia.css 1271 * Page protection warning
    [all...]
  /external/google-breakpad/src/client/mac/handler/
minidump_generator.cc 305 (submap_info.protection & VM_PROT_READ) == 0) {
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-darwin.c     [all...]
  /external/libvorbis/doc/
01-introduction.tex 50 Vorbis provides none of its own framing, synchronization or protection
  /external/valgrind/coregrind/m_aspacemgr/
aspacemgr-linux.c 801 to provide execute protection by placing all executable mappings
    [all...]
  /external/v8/src/
v8natives.js     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 

Completed in 765 milliseconds

1 2