Searched refs:prot (Results 126 - 150 of 180) sorted by relevance

12345678

/external/compiler-rt/lib/lsan/
H A Dlsan_common.cc273 uptr begin, end, prot; local
276 &prot)) {
280 bool is_readable = prot & MemoryMappingLayout::kProtectionRead;
/external/iproute2/misc/
H A Dss.c2264 int prot; local
2282 &type, &prot, &iface, &state,
2295 tst.local.data[0] = prot;
2307 if (prot == 3) {
2312 ll_proto_n2a(htons(prot), tb, sizeof(tb)));
2340 int prot, pid; local
2355 &prot, &pid, &groups, &rq, &wq, &cb, &rc);
2363 tst.local.data[0] = prot;
2374 if (resolve_services && prot == 0)
2376 else if (resolve_services && prot
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-trace.c78 int printed = 0, prot = arg; local
80 if (prot == PROT_NONE)
83 if (prot & PROT_##n) { \
85 prot &= ~PROT_##n; \
98 if (prot)
99 printed += scnprintf(bf + printed, size - printed, "%s%#x", printed ? "|" : "", prot);
322 [2] = SCA_MMAP_PROT, /* prot */
326 [2] = SCA_MMAP_PROT, /* prot */ }, },
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profiler.cc422 int prot, int flags, int fd, off_t offset) {
428 "mmap(start=0x%" PRIxPTR ", len=%" PRIuS ", prot=0x%x, flags=0x%x, "
430 (uintptr_t) start, size, prot, flags, fd, (unsigned int) offset,
421 MmapHook(const void* result, const void* start, size_t size, int prot, int flags, int fd, off_t offset) argument
H A Dmemory_region_map.cc748 int prot, int flags,
753 "prot %d flags %d fd %d offs %" PRId64,
755 reinterpret_cast<uint64>(start), prot, flags, fd,
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmemory_region_map.cc585 int prot, int flags,
590 "prot %d flags %d fd %d offs %"PRId64,
592 reinterpret_cast<uint64>(start), prot, flags, fd,
/external/valgrind/main/coregrind/m_syswrap/
H A Dpriv_syswrap-generic.h71 ML_(notify_core_and_tool_of_mmap) ( Addr a, SizeT len, UInt prot,
76 ML_(notify_core_and_tool_of_mprotect) ( Addr a, SizeT len, Int prot );
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_intercept.h113 int prot,
H A Dkernel_proxy.h145 int prot,
H A Dkernel_wrap.h97 void* mmap(void* addr, size_t length, int prot, int flags, int fd,
H A Dkernel_intercept.cc359 int prot,
364 return s_state.kp->mmap(addr, length, prot, flags, fd, offset);
357 ki_mmap(void* addr, size_t length, int prot, int flags, int fd, off_t offset) argument
/external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
H A Dmalloc_hook.h269 static void* UnhookedMMap(void *start, size_t length, int prot, int flags,
/external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
H A Dmalloc_hook.h269 static void* UnhookedMMap(void *start, size_t length, int prot, int flags,
/external/chromium_org/v8/src/base/platform/
H A Dplatform-win32.cc781 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE; local
785 prot);
1280 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE; local
1281 if (NULL == VirtualAlloc(base, size, MEM_COMMIT, prot)) {
/external/llvm/lib/Support/Unix/
H A DPath.inc495 int prot = (Mode == readonly) ? PROT_READ : (PROT_READ | PROT_WRITE);
499 Mapping = ::mmap(nullptr, Size, prot, flags, FD, Offset);
/external/iproute2/ip/
H A Diproute.c918 __u32 prot; local
920 if (rtnl_rtprot_a2n(&prot, *argv))
922 req.r.rtm_protocol = prot;
1148 __u32 prot = 0; local
1151 if (rtnl_rtprot_a2n(&prot, *argv)) {
1154 prot = 0;
1157 filter.protocol = prot;
/external/qemu/target-i386/
H A Dhelper.c969 int error_code, is_dirty, prot, page_size, is_write, is_user; local
984 prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
1206 prot = PAGE_READ;
1208 prot |= PAGE_EXEC;
1214 prot |= PAGE_WRITE;
1218 prot |= PAGE_WRITE;
1230 tlb_set_page(env, vaddr, paddr, prot, mmu_idx, page_size);
/external/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h610 #define __sanitizer_syscall_pre_mprotect(start, len, prot) \
612 (long)(prot))
613 #define __sanitizer_syscall_post_mprotect(res, start, len, prot) \
615 (long)(prot))
626 #define __sanitizer_syscall_pre_remap_file_pages(start, size, prot, pgoff, \
629 (long)(start), (long)(size), (long)(prot), (long)(pgoff), (long)(flags))
630 #define __sanitizer_syscall_post_remap_file_pages(res, start, size, prot, \
633 (long)(size), (long)(prot), \
1777 #define __sanitizer_syscall_pre_mmap_pgoff(addr, len, prot, flags, fd, pgoff) \
1779 (long)(prot), (lon
[all...]
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A D_unixos.h481 PRIntn prot; member in struct:_MDFileMap
615 void *addr, PRSize len, PRIntn prot, PRIntn flags,
/external/clang/lib/Index/
H A DUSRGeneration.cpp138 void GenObjCProtocol(StringRef prot) { argument
139 generateUSRForObjCProtocol(prot, Out);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cc246 uptr internal_mmap(void *addr, uptr length, int prot, int flags, argument
H A Dsanitizer_linux.cc100 uptr internal_mmap(void *addr, uptr length, int prot, int flags, argument
103 return internal_syscall(SYSCALL(mmap), (uptr)addr, length, prot, flags, fd,
106 return internal_syscall(SYSCALL(mmap2), addr, length, prot, flags, fd,
/external/qemu/include/exec/
H A Dexec-all.h106 hwaddr paddr, int prot,
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devent.c198 char prot[5]; local
212 &event->mmap.start, &event->mmap.len, prot,
219 if (prot[2] != 'x')
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc701 TSAN_INTERCEPTOR(void*, mmap, void *addr, long_t sz, int prot, argument
703 SCOPED_TSAN_INTERCEPTOR(mmap, addr, sz, prot, flags, fd, off);
706 void *res = REAL(mmap)(addr, sz, prot, flags, fd, off);
715 TSAN_INTERCEPTOR(void*, mmap64, void *addr, long_t sz, int prot, argument
717 SCOPED_TSAN_INTERCEPTOR(mmap64, addr, sz, prot, flags, fd, off);
720 void *res = REAL(mmap64)(addr, sz, prot, flags, fd, off);

Completed in 619 milliseconds

12345678