HomeSort by relevance Sort by last modified time
    Searched refs:prot (Results 176 - 200 of 243) sorted by null

1 2 3 4 5 6 78 910

  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/asm-generic/
pgtable.h 83 #define move_pte(pte, prot, old_addr, new_addr) (pte)
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm-generic/
pgtable.h 83 #define move_pte(pte, prot, old_addr, new_addr) (pte)
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm-generic/
pgtable.h 83 #define move_pte(pte, prot, old_addr, new_addr) (pte)
  /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/kernel-headers/original/linux/
ipv6.h 466 static inline u16 inet6_tw_offset(const struct proto *prot)
468 return prot->twsk_prot->twsk_obj_size -
  /external/tcpdump/
print-icmp6.c 244 u_int prot; local
296 if ((ouh = get_upperlayer((u_char *)oip, &prot))
301 switch (prot) {
522 get_upperlayer(u_char *bp, u_int *prot)
550 *prot = nh;
587 *prot = nh; /* meaningless, but set here anyway */
    [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/valgrind/main/coregrind/m_syswrap/
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 )
1773 UInt prot = VKI_PROT_READ|VKI_PROT_WRITE; local
3542 Int prot = ARG3; local
    [all...]
priv_syswrap-generic.h 68 ML_(notify_core_and_tool_of_mmap) ( Addr a, SizeT len, UInt prot,
73 ML_(notify_core_and_tool_of_mprotect) ( Addr a, SizeT len, Int prot );
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.cc 61 void *internal_mmap(void *addr, uptr length, int prot, int flags,
64 return (void *)syscall(__NR_mmap, addr, length, prot, flags, fd, offset);
66 return (void *)syscall(__NR_mmap2, addr, length, prot, flags, fd, offset);
sanitizer_win.cc 201 void *internal_mmap(void *addr, uptr length, int prot, int flags,
  /external/iproute2/misc/
ss.c 2073 int prot; local
2149 int prot, pid; local
    [all...]
  /dalvik/vm/
Misc.cpp 612 void *dvmAllocRegion(size_t byteCount, int prot, const char *name) {
621 base = mmap(NULL, byteCount, prot, MAP_PRIVATE, fd, 0);
  /external/kernel-headers/original/linux/sunrpc/
svc.h 249 u32 prot; /* protocol (UDP or TCP) */ member in struct:svc_deferred_req
xprt.h 128 int prot; /* IP protocol */ member in struct:rpc_xprt
  /external/v8/src/
platform-freebsd.cc 171 int prot = PROT_READ | PROT_WRITE | (executable ? PROT_EXEC : 0); local
172 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
443 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); local
446 prot,
platform-linux.cc 364 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); local
366 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
696 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); local
699 prot,
    [all...]
platform-openbsd.cc 189 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); local
191 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
490 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); local
493 prot,
  /external/iproute2/ip/
iproute.c 884 __u32 prot; local
886 if (rtnl_rtprot_a2n(&prot, *argv))
888 req.r.rtm_protocol = prot;
1081 __u32 prot = 0; local
1084 if (rtnl_rtprot_a2n(&prot, *argv)) {
1087 prot = 0;
1090 filter.protocol = prot;
    [all...]
  /external/qemu/target-i386/
helper.c 986 int error_code, is_dirty, prot, page_size, ret, is_write, is_user; local
    [all...]
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 93 public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException { return os.mmap(address, byteCount, prot, flags, fd, offset); }
Os.java 85 public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException;
  /system/core/libsparse/
output_file.c 51 static inline void *mmap64(void *addr, size_t length, int prot, int flags,
54 return __mmap2(addr, length, prot, flags, fd, offset >> 12);
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 760 INTERCEPTOR(void *, mmap, void *addr, SIZE_T length, int prot, int flags,
763 void *res = REAL(mmap)(addr, length, prot, flags, fd, offset);
769 INTERCEPTOR(void *, mmap64, void *addr, SIZE_T length, int prot, int flags,
772 void *res = REAL(mmap64)(addr, length, prot, flags, fd, offset);
  /external/clang/tools/libclang/
CIndexUSRs.cpp 126 void GenObjCProtocol(StringRef prot);
795 void USRGenerator::GenObjCProtocol(StringRef prot) {
796 Out << "objc(pl)" << prot; local

Completed in 1636 milliseconds

1 2 3 4 5 6 78 910