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

1 2

  /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
  /external/webkit/Source/WebKit2/Platform/gtk/
SharedMemoryGtk.cpp 61 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection)
72 bool SharedMemory::createHandle(Handle& handle, Protection protection)
  /external/webkit/Source/WebKit2/Platform/win/
SharedMemoryWin.cpp 133 static DWORD accessRights(SharedMemory::Protection protection)
135 switch (protection) {
146 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection)
148 RefPtr<SharedMemory> memory = adopt(handle.m_handle, handle.m_size, protection);
158 PassRefPtr<SharedMemory> SharedMemory::adopt(HANDLE handle, size_t size, Protection protection)
163 DWORD desiredAccess = accessRights(protection);
187 bool SharedMemory::createHandle(Handle& handle, Protection protection
    [all...]
  /external/webkit/Source/WebKit2/Platform/mac/
SharedMemoryMac.cpp 121 static inline vm_prot_t machProtection(SharedMemory::Protection protection)
123 switch (protection) {
134 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection)
140 vm_prot_t vmProtection = machProtection(protection);
167 bool SharedMemory::createHandle(Handle& handle, Protection protection)
177 if (protection == ReadWrite && m_port) {
184 kern_return_t kr = mach_make_memory_entry_64(mach_task_self(), &size, address, machProtection(protection), &port, MACH_PORT_NULL)
    [all...]
  /external/webkit/Source/WebKit2/Platform/unix/
SharedMemoryUnix.cpp 155 static inline int accessModeMMap(SharedMemory::Protection protection)
157 switch (protection) {
168 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection)
172 void* data = mmap(0, handle.m_size, accessModeMMap(protection), MAP_SHARED, handle.m_fileDescriptor, 0);
190 static inline int accessModeFile(SharedMemory::Protection protection)
192 switch (protection) {
203 bool SharedMemory::createHandle(Handle& handle, Protection protection
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
CheckedMalloc.cpp 65 return regionInfo.protection;
  /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
  /external/libvpx/vp8/encoder/arm/neon/
fastfdct8x4_neon.asm 89 vadd.s16 d4, d18, d21 ;op[1] = temp1 + temp2 -- q is not necessary, just for protection
90 vadd.s16 d5, d28, d31 ;op[1] = temp1 + temp2 -- q is not necessary, just for protection
140 vadd.s16 d3, d18, d21 ;b2 = temp1 + temp2 -- q is not necessary, just for protection
141 vadd.s16 d7, d28, d31 ;b2 = temp1 + temp2 -- q is not necessary, just for protection
fastfdct4x4_neon.asm 66 vadd.s16 d3, d14, d17 ;op[1] = temp1 + temp2 -- q is not necessary, just for protection
96 vadd.s16 d3, d14, d17 ;b2 = temp1 + temp2 -- q is not necessary, just for protection
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 1010 PeepholeProtection protection; local
    [all...]
CodeGenFunction.h     [all...]
  /frameworks/base/media/libstagefright/
avc_utils.cpp 519 unsigned protection = (header >> 16) & 1; local
  /external/quake/
NOTICE 59 Also, for each author's protection and ours, we want to make certain
105 you may at your option offer warranty protection in exchange for a fee.
404 Also, for each author's protection and ours, we want to make certain
450 you may at your option offer warranty protection in exchange for a fee.
    [all...]
  /external/bluetooth/bluez/gdbus/
NOTICE 65 Also, for each author's protection and ours, we want to make certain
110 you may at your option offer warranty protection in exchange for a fee.
  /external/bluetooth/bluez/input/
NOTICE 65 Also, for each author's protection and ours, we want to make certain
110 you may at your option offer warranty protection in exchange for a fee.
  /external/bluetooth/bluez/plugins/
NOTICE 65 Also, for each author's protection and ours, we want to make certain
110 you may at your option offer warranty protection in exchange for a fee.
  /external/bluetooth/bluez/src/
NOTICE 67 Also, for each author's protection and ours, we want to make certain
112 you may at your option offer warranty protection in exchange for a fee.
  /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/v8/src/
string.js 747 // Helper function for very basic XSS protection.
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-darwin.c     [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex 50 % warranty protection to some or all third parties, at your option).
54 % protection in exchange for a fee.
    [all...]
  /external/valgrind/main/coregrind/m_aspacemgr/
aspacemgr-linux.c 904 to provide execute protection by placing all executable mappings
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 3074 milliseconds

1 2