/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_procmaps.h | 28 uptr *protection) { in GetObjectNameAndOffset() argument 46 char filename[], uptr filename_size, uptr *protection); 52 uptr *protection); 72 uptr *protection) { 76 protection); 110 uptr *protection);
|
D | sanitizer_mac.cc | 219 char filename[], uptr filename_size, uptr *protection) { in NextSegmentLoad() argument 220 if (protection) in NextSegmentLoad() 247 uptr *protection) { in Next() argument 279 start, end, offset, filename, filename_size, protection)) in Next() 286 start, end, offset, filename, filename_size, protection)) in Next() 301 uptr *protection) { in GetObjectNameAndOffset() argument 303 protection); in GetObjectNameAndOffset()
|
D | sanitizer_linux.cc | 395 uptr *protection) { in Next() argument 423 if (protection) { in Next() 424 *protection = local_protection; in Next() 456 uptr *protection) { in GetObjectNameAndOffset() argument 458 protection); in GetObjectNameAndOffset()
|
/external/webkit/Source/WebKit2/Platform/win/ |
D | SharedMemoryWin.cpp | 133 static DWORD accessRights(SharedMemory::Protection protection) in accessRights() argument 135 switch (protection) { in accessRights() 146 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection) in create() argument 148 RefPtr<SharedMemory> memory = adopt(handle.m_handle, handle.m_size, protection); in create() 158 PassRefPtr<SharedMemory> SharedMemory::adopt(HANDLE handle, size_t size, Protection protection) in adopt() argument 163 DWORD desiredAccess = accessRights(protection); in adopt() 187 bool SharedMemory::createHandle(Handle& handle, Protection protection) in createHandle() argument 195 …dle(processHandle, m_handle, processHandle, &duplicatedHandle, accessRights(protection), FALSE, 0)) in createHandle()
|
/external/webkit/Source/WebKit2/Platform/unix/ |
D | SharedMemoryUnix.cpp | 155 static inline int accessModeMMap(SharedMemory::Protection protection) in accessModeMMap() argument 157 switch (protection) { in accessModeMMap() 168 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection) in create() argument 172 …void* data = mmap(0, handle.m_size, accessModeMMap(protection), MAP_SHARED, handle.m_fileDescripto… in create() 190 static inline int accessModeFile(SharedMemory::Protection protection) in accessModeFile() argument 192 switch (protection) { in accessModeFile() 203 bool SharedMemory::createHandle(Handle& handle, Protection protection) in createHandle() argument 216 while ((fcntl(duplicatedHandle, F_SETFD, FD_CLOEXEC | accessModeFile(protection)) == -1)) { in createHandle()
|
/external/webkit/Source/WebKit2/Platform/mac/ |
D | SharedMemoryMac.cpp | 121 static inline vm_prot_t machProtection(SharedMemory::Protection protection) in machProtection() argument 123 switch (protection) { in machProtection() 134 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection) in create() argument 140 vm_prot_t vmProtection = machProtection(protection); in create() 167 bool SharedMemory::createHandle(Handle& handle, Protection protection) in createHandle() argument 177 if (protection == ReadWrite && m_port) { in createHandle() 184 …_make_memory_entry_64(mach_task_self(), &size, address, machProtection(protection), &port, MACH_PO… in createHandle()
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | OSAllocatorWin.cpp | 34 static inline DWORD protection(bool writable, bool executable) in protection() function 43 void* result = VirtualAlloc(0, bytes, MEM_RESERVE, protection(writable, executable)); in reserveUncommitted() 51 … void* result = VirtualAlloc(0, bytes, MEM_RESERVE | MEM_COMMIT, protection(writable, executable)); in reserveAndCommit() 59 void* result = VirtualAlloc(address, bytes, MEM_COMMIT, protection(writable, executable)); in commit()
|
D | PageAllocationAligned.cpp | 43 int protection = PROT_READ; in allocate() local 45 protection |= PROT_WRITE; in allocate() 47 protection |= PROT_EXEC; in allocate() 50 …), &address, size, alignmentMask, flags, MEMORY_OBJECT_NULL, 0, FALSE, protection, PROT_READ | PRO… in allocate()
|
D | OSAllocatorPosix.cpp | 49 int protection = PROT_READ; in reserveAndCommit() local 51 protection |= PROT_WRITE; in reserveAndCommit() 53 protection |= PROT_EXEC; in reserveAndCommit() 83 result = mmap(result, bytes, protection, flags, fd, 0); in reserveAndCommit()
|
/external/webkit/Source/WebKit2/Platform/gtk/ |
D | SharedMemoryGtk.cpp | 61 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection) in create() argument 72 bool SharedMemory::createHandle(Handle& handle, Protection protection) in createHandle() argument
|
/external/valgrind/main/coregrind/ |
D | pub_core_threadstate.h | 224 UWord protection; member 246 UWord protection; member
|
/external/qemu/hw/ |
D | mips.h | 10 void ds1225y_set_protection(void *opaque, int protection);
|
/external/webkit/Tools/DumpRenderTree/mac/ |
D | CheckedMalloc.cpp | 65 return regionInfo.protection; in protectionOfRegion()
|
/external/nist-sip/ |
D | NIST-CONDITIONS-OF-USE.txt | 13 * employees are not subject to copyright protection in the United States
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
D | wpa_background.sgml | 40 makes attacks easier, there is no replay protection, and non-keyed 48 per-packet RC4 keys. In addition, it implements replay protection,
|
/external/clang/lib/CodeGen/ |
D | CodeGenFunction.cpp | 1273 PeepholeProtection protection; in protectFromPeepholes() local 1274 protection.Inst = inst; in protectFromPeepholes() 1275 return protection; in protectFromPeepholes() 1278 void CodeGenFunction::unprotectFromPeepholes(PeepholeProtection protection) { in unprotectFromPeepholes() argument 1279 if (!protection.Inst) return; in unprotectFromPeepholes() 1282 protection.Inst->eraseFromParent(); in unprotectFromPeepholes()
|
/external/icu4c/test/testdata/ |
D | testaliases.txt | 15 aaa:alias { "testaliases/aab" } // Test circular dependency protection
|
/external/llvm/lib/Support/Windows/ |
D | Memory.inc | 26 // Contrary to what you might expect, the Windows page protection flags 44 llvm_unreachable("Illegal memory protection flag specified!");
|
/external/srtp/ |
D | README | 52 crypto/replay/ replay protection 153 * Replay protection is contained in the crypto engine, and
|
/external/v8/src/ |
D | platform-win32.cc | 905 static void* RandomizedVirtualAlloc(size_t size, int action, int protection) { in RandomizedVirtualAlloc() argument 908 if (protection == PAGE_EXECUTE_READWRITE || protection == PAGE_NOACCESS) { in RandomizedVirtualAlloc() 911 base = VirtualAlloc(GetRandomAddr(), size, action, protection); in RandomizedVirtualAlloc() 916 if (base == NULL) base = VirtualAlloc(NULL, size, action, protection); in RandomizedVirtualAlloc()
|
/external/expat/amiga/ |
D | README.txt | 57 - fixed library protection bits
|
/external/srtp/doc/ |
D | rfc3711.txt | 36 protection to the RTP traffic and to the control traffic for RTP, the 129 protection to the RTP traffic and to the control traffic for RTP, 140 proves to be a suitable protection for heterogeneous environments 181 provided is actually only integrity protection and not data origin 191 protection against replayed packets. 194 except that SRTCP integrity protection is mandatory (malicious or 219 These properties ensure that SRTP is a suitable protection scheme for 238 confidentiality and integrity protection, both for the SRTP stream 374 indirectly provides replay protection by authenticating 376 protected as this does not provide any extra protection. [all …]
|
/external/webkit/Source/WebCore/platform/mac/ |
D | CursorMac.mm | 40 // Simple NSCursor calls shouldn't need protection,
|
/external/qemu/android/camera/ |
D | camera-capture-mac.m | 268 * So we need a protection here. */ 312 * So we need a protection here. */
|
/external/srtp/googlepatches/ |
D | vidyo-4-srtp-rtx.patch | 7 * protection. */
|