/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_mmap.py | 236 # Try incompatible flags, prot and access parameters. 240 prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE) 244 prot = mmap.PROT_READ | getattr(mmap, 'PROT_EXEC', 0) 246 m = mmap.mmap(f.fileno(), mapsize, prot=prot) 551 m = mmap.mmap(f.fileno(), mapsize, prot=mmap.PROT_READ)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_mmap.py | 236 # Try incompatible flags, prot and access parameters. 240 prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE) 244 prot = mmap.PROT_READ | getattr(mmap, 'PROT_EXEC', 0) 246 m = mmap.mmap(f.fileno(), mapsize, prot=prot) 551 m = mmap.mmap(f.fileno(), mapsize, prot=mmap.PROT_READ)
|
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-mips32-linux.c | 370 static void notify_core_of_mmap(Addr a, SizeT len, UInt prot, 380 d = VG_(am_notify_client_mmap)( a, len, prot, flags, fd, offset ); 387 static void notify_tool_of_mmap(Addr a, SizeT len, UInt prot, ULong di_handle) 396 rr = toBool(prot & VKI_PROT_READ); 397 ww = toBool(prot & VKI_PROT_WRITE); 398 xx = toBool(prot & VKI_PROT_EXEC); 498 arg3, /* prot */ 510 arg3, /* prot */ 556 unsigned long, prot, unsigned long, flags, 569 int, prot, int, flags, int, fd, unsigned long, offset) [all...] |
syswrap-generic.c | 145 static void notify_core_of_mmap(Addr a, SizeT len, UInt prot, 155 d = VG_(am_notify_client_mmap)( a, len, prot, flags, fd, offset ); 162 static void notify_tool_of_mmap(Addr a, SizeT len, UInt prot, ULong di_handle) 171 rr = toBool(prot & VKI_PROT_READ); 172 ww = toBool(prot & VKI_PROT_WRITE); 173 xx = toBool(prot & VKI_PROT_EXEC); 196 ML_(notify_core_and_tool_of_mmap) ( Addr a, SizeT len, UInt prot, 202 notify_core_of_mmap(a, len, prot, flags, fd, offset); 203 notify_tool_of_mmap(a, len, prot, 0/*di_handle*/); 221 ML_(notify_core_and_tool_of_mprotect) ( Addr a, SizeT len, Int prot ) 1875 UInt prot = VKI_PROT_READ|VKI_PROT_WRITE; local 3652 Int prot = ARG3; local [all...] |
/external/dnsmasq/src/ |
cache.c | 495 struct crec *cache_find_by_name(struct crec *crecp, char *name, time_t now, unsigned short prot) 515 (crecp->flags & prot) && 572 (ans->flags & prot) && 580 time_t now, unsigned short prot) 584 int addrlen = (prot == F_IPV6) ? IN6ADDRSZ : INADDRSZ; 606 if ((crecp->flags & prot) && 637 (ans->flags & prot) && [all...] |
/external/fio/os/windows/ |
posix.c | 277 void *mmap(void *addr, size_t len, int prot, int flags, 283 if (prot & PROT_NONE) 286 if ((prot & PROT_READ) && !(prot & PROT_WRITE)) 289 if (prot & PROT_WRITE)
|
/external/lldb/source/Plugins/Process/POSIX/ |
ProcessPOSIX.cpp | 578 unsigned prot = 0; local 580 prot |= eMmapProtRead; 582 prot |= eMmapProtWrite; 584 prot |= eMmapProtExec; 586 if (InferiorCallMmap(this, allocated_addr, 0, size, prot,
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/netinet/ |
in.h | 182 #define IPPROTO_CPNX 72 /* Comp. Prot. Net. Executive */ 183 #define IPPROTO_CPHB 73 /* Comp. Prot. HeartBeat */ 196 #define IPPROTO_DGP 86 /* dissimilar gateway prot. */
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_coverage_libcdep.cc | 284 uptr mb, me, off, prot; local 288 proc_maps.Next(&mb, &me, &off, module.data(), module.size(), &prot); 290 if ((prot & MemoryMappingLayout::kProtectionExecute) == 0)
|
/external/tcpdump/ |
print-icmp6.c | 312 u_int prot; local 366 if ((ouh = get_upperlayer((u_char *)oip, &prot)) 371 switch (prot) { 595 get_upperlayer(u_char *bp, u_int *prot) 623 *prot = nh; 660 *prot = nh; /* meaningless, but set here anyway */ [all...] |
/bionic/libc/bionic/ |
pthread_create.cpp | 106 int prot = PROT_READ | PROT_WRITE; local 108 void* stack = mmap(NULL, thread->attr.stack_size, prot, flags, -1, 0);
|
/external/chromium_org/components/nacl/loader/nonsfi/ |
elf_loader.cc | 104 // Converts the pflags (in phdr) to mmap's prot flags. 111 // Converts the pflags (in phdr) to NaCl ABI's prot flags.
|
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/ |
index.html | 134 <td>Prot: <input type="text" id="mm-filter-prot"></td>
|
/external/compiler-rt/include/sanitizer/ |
linux_syscall_hooks.h | [all...] |
/external/doclava/src/com/google/doclava/apicheck/ |
XmlApiFile.java | 160 final boolean prot = "protected".equals(attributes.getValue("visibility")); 165 pub, prot, pkgpriv, false/*isPrivate*/, false/*isFinal*/, false/*isStatic*/,
|
/external/valgrind/main/coregrind/ |
pub_core_debuginfo.h | 70 extern void VG_(di_notify_mprotect)( Addr a, SizeT len, UInt prot ); 78 extern void VG_(di_notify_vm_protect)( Addr a, SizeT len, UInt prot );
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/rpc/ |
clnt.h | 285 * clnt_create(host, prog, vers, prot) 289 * char *prot; -- protocol
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpc/ |
clnt.h | 285 * clnt_create(host, prog, vers, prot) 289 * char *prot; -- protocol
|
/art/runtime/ |
elf_file.h | 117 bool Setup(int prot, int flags, std::string* error_msg);
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_intercept.h | 113 int prot,
|
kernel_wrap.h | 97 void* mmap(void* addr, size_t length, int prot, int flags, int fd,
|
node.h | 84 int prot,
|
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/ |
results.py | 14 allocation) given some of its properties (e.g. the mapped file or the prot.
|
rules.py | 107 # Extract the filter keys (e.g., mmap-file, mmap-prot) that will be passed
|
/external/clang/lib/Index/ |
USRGeneration.cpp | 138 void GenObjCProtocol(StringRef prot) { 139 generateUSRForObjCProtocol(prot, Out); 794 void clang::index::generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS) { 795 OS << "objc(pl)" << Prot;
|