Home
last modified time | relevance | path

Searched refs:protection (Results 1 – 25 of 170) sorted by relevance

1234567

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_procmaps.h28 uptr *protection) { in GetObjectNameAndOffset() argument
46 char filename[], uptr filename_size, uptr *protection);
52 uptr *protection);
72 uptr *protection) {
76 protection);
110 uptr *protection);
Dsanitizer_mac.cc219 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()
Dsanitizer_linux.cc395 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/
DSharedMemoryWin.cpp133 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/
DSharedMemoryUnix.cpp155 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/
DSharedMemoryMac.cpp121 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/
DOSAllocatorWin.cpp34 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()
DPageAllocationAligned.cpp43 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()
DOSAllocatorPosix.cpp49 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/
DSharedMemoryGtk.cpp61 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/
Dpub_core_threadstate.h224 UWord protection; member
246 UWord protection; member
/external/qemu/hw/
Dmips.h10 void ds1225y_set_protection(void *opaque, int protection);
/external/webkit/Tools/DumpRenderTree/mac/
DCheckedMalloc.cpp65 return regionInfo.protection; in protectionOfRegion()
/external/nist-sip/
DNIST-CONDITIONS-OF-USE.txt13 * employees are not subject to copyright protection in the United States
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
Dwpa_background.sgml40 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/
DCodeGenFunction.cpp1273 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/
Dtestaliases.txt15 aaa:alias { "testaliases/aab" } // Test circular dependency protection
/external/llvm/lib/Support/Windows/
DMemory.inc26 // Contrary to what you might expect, the Windows page protection flags
44 llvm_unreachable("Illegal memory protection flag specified!");
/external/srtp/
DREADME52 crypto/replay/ replay protection
153 * Replay protection is contained in the crypto engine, and
/external/v8/src/
Dplatform-win32.cc905 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/
DREADME.txt57 - fixed library protection bits
/external/srtp/doc/
Drfc3711.txt36 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/
DCursorMac.mm40 // Simple NSCursor calls shouldn't need protection,
/external/qemu/android/camera/
Dcamera-capture-mac.m268 * So we need a protection here. */
312 * So we need a protection here. */
/external/srtp/googlepatches/
Dvidyo-4-srtp-rtx.patch7 * protection. */

1234567