/external/webkit/Source/JavaScriptCore/wtf/ |
OSAllocatorWin.cpp | 34 static inline DWORD protection(bool writable, bool executable) function in namespace:WTF 43 void* result = VirtualAlloc(0, bytes, MEM_RESERVE, protection(writable, executable)); 51 void* result = VirtualAlloc(0, bytes, MEM_RESERVE | MEM_COMMIT, protection(writable, executable)); 59 void* result = VirtualAlloc(address, bytes, MEM_COMMIT, protection(writable, executable));
|
OSAllocatorPosix.cpp | 49 int protection = PROT_READ; local 51 protection |= PROT_WRITE; 53 protection |= PROT_EXEC; 83 result = mmap(result, bytes, protection, flags, fd, 0);
|
PageAllocationAligned.cpp | 43 int protection = PROT_READ; local 45 protection |= PROT_WRITE; 47 protection |= PROT_EXEC; 50 vm_map(current_task(), &address, size, alignmentMask, flags, MEMORY_OBJECT_NULL, 0, FALSE, protection, PROT_READ | PROT_WRITE | PROT_EXEC, VM_INHERIT_DEFAULT); local
|
/frameworks/base/media/libstagefright/ |
avc_utils.cpp | 519 unsigned protection = (header >> 16) & 1; local
|
/external/clang/lib/CodeGen/ |
CodeGenFunction.cpp | 1010 PeepholeProtection protection; local [all...] |
/external/valgrind/main/coregrind/ |
pub_core_threadstate.h | 234 UWord protection; member in struct:__anon12387::__anon12389::__anon12401 256 UWord protection; member in struct:__anon12387::__anon12389::__anon12406
|