/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_procmaps.h | 30 uptr *protection) { 48 char filename[], uptr filename_size, uptr *protection); 54 uptr *protection); 61 // Memory protection masks. 74 uptr *protection) { 78 protection); 112 uptr *protection); 28 GetObjectNameAndOffset(uptr addr, uptr *offset, char filename[], uptr filename_size, uptr *protection) argument
|
H A D | sanitizer_mac.cc | 232 char filename[], uptr filename_size, uptr *protection) { 233 if (protection) 260 uptr *protection) { 292 start, end, offset, filename, filename_size, protection)) 299 start, end, offset, filename, filename_size, protection)) 314 uptr *protection) { 316 protection); 230 NextSegmentLoad( uptr *start, uptr *end, uptr *offset, char filename[], uptr filename_size, uptr *protection) argument 258 Next(uptr *start, uptr *end, uptr *offset, char filename[], uptr filename_size, uptr *protection) argument 311 GetObjectNameAndOffset(uptr addr, uptr *offset, char filename[], uptr filename_size, uptr *protection) argument
|
H A D | sanitizer_linux.cc | 406 uptr *protection) { 434 if (protection) { 435 *protection = local_protection; 469 uptr *protection) { 471 protection); 404 Next(uptr *start, uptr *end, uptr *offset, char filename[], uptr filename_size, uptr *protection) argument 466 GetObjectNameAndOffset(uptr addr, uptr *offset, char filename[], uptr filename_size, uptr *protection) argument
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
H A D | 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, 189 InvokePreMmapHook(const void* start, size_t size, int protection, int flags, int fd, off_t offset) argument 211 InvokeMmapHook(const void* result, const void* start, size_t size, int protection, int flags, int fd, off_t offset) argument 230 InvokeMmapReplacement(const void* start, size_t size, int protection, int flags, int fd, off_t offset, void** result) argument
|
H A D | 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)); 120 InitialPreMMapHook(const void* start, size_t size, int protection, int flags, int fd, off_t offset) argument 532 InvokePreMmapHookSlow(const void* start, size_t size, int protection, int flags, int fd, off_t offset) argument 542 InvokeMmapHookSlow(const void* result, const void* start, size_t size, int protection, int flags, int fd, off_t offset) argument 553 InvokeMmapReplacementSlow(const void* start, size_t size, int protection, int flags, int fd, off_t offset, void** result) argument
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
H A D | malloc_hook_test.cc | 305 int protection, 303 MmapReplacement(const void* start, size_t size, int protection, int flags, int fd, off_t offset, void** result) argument
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
H A D | 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, 189 InvokePreMmapHook(const void* start, size_t size, int protection, int flags, int fd, off_t offset) argument 211 InvokeMmapHook(const void* result, const void* start, size_t size, int protection, int flags, int fd, off_t offset) argument 230 InvokeMmapReplacement(const void* start, size_t size, int protection, int flags, int fd, off_t offset, void** result) argument
|
H A D | 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)); 120 InitialPreMMapHook(const void* start, size_t size, int protection, int flags, int fd, off_t offset) argument 532 InvokePreMmapHookSlow(const void* start, size_t size, int protection, int flags, int fd, off_t offset) argument 542 InvokeMmapHookSlow(const void* result, const void* start, size_t size, int protection, int flags, int fd, off_t offset) argument 553 InvokeMmapReplacementSlow(const void* start, size_t size, int protection, int flags, int fd, off_t offset, void** result) argument
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
H A D | malloc_hook_test.cc | 305 int protection, 303 MmapReplacement(const void* start, size_t size, int protection, int flags, int fd, off_t offset, void** result) argument
|
/external/chromium_org/v8/src/ |
H A D | platform-cygwin.cc | 236 static void* RandomizedVirtualAlloc(size_t size, int action, int protection) { argument 239 if (protection == PAGE_EXECUTE_READWRITE || protection == PAGE_NOACCESS) { 242 base = VirtualAlloc(GetRandomAddr(), size, action, protection); 247 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection);
|
H A D | platform-win32.cc | 862 static void* RandomizedVirtualAlloc(size_t size, int action, int protection) { argument 865 if (protection == PAGE_EXECUTE_READWRITE || protection == PAGE_NOACCESS) { 868 base = VirtualAlloc(OS::GetRandomMmapAddr(), size, action, protection); 873 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection);
|
/external/valgrind/main/coregrind/ |
H A D | pub_core_threadstate.h | 224 UWord protection; member in struct:__anon28334::__anon28335::__anon28347 246 UWord protection; member in struct:__anon28334::__anon28335::__anon28352
|
/external/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 1394 // extend this protection. 1405 PeepholeProtection protection; local 1406 protection.Inst = inst; 1407 return protection; 1410 void CodeGenFunction::unprotectFromPeepholes(PeepholeProtection protection) { argument 1411 if (!protection.Inst) return; 1414 protection.Inst->eraseFromParent();
|
/external/v8/src/ |
H A D | platform-win32.cc | 905 static void* RandomizedVirtualAlloc(size_t size, int action, int protection) { argument 908 if (protection == PAGE_EXECUTE_READWRITE || protection == PAGE_NOACCESS) { 911 base = VirtualAlloc(GetRandomAddr(), size, action, protection); 916 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection);
|