HomeSort by relevance Sort by last modified time
    Searched defs:prot (Results 51 - 75 of 147) sorted by null

1 23 4 5 6

  /external/clang/test/CXX/class.access/
p4.cpp 63 void test(A &a, Public &pub, Protected &prot, Private &priv) {
65 a + prot; // expected-error {{'operator+' is a protected member}} local
68 a[prot]; // expected-error {{'operator[]' is a protected member}}
71 a(prot); // expected-error {{'operator()' is a protected member}}
77 ca + prot; local
82 ca(prot); // expected-error {{'operator void (*)(Protected &)' is a protected member}}
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 180 uptr start, end, offset, prot; local
182 while (proc_maps.Next(&start, &end, &offset, name, ARRAY_SIZE(name), &prot)) {
184 && (prot & MemoryMappingLayout::kProtectionRead)
185 && (prot & MemoryMappingLayout::kProtectionExecute)
186 && !(prot & MemoryMappingLayout::kProtectionWrite)
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
event.c 198 char prot[5]; local
212 &event->mmap.start, &event->mmap.len, prot,
219 if (prot[2] != 'x')
evlist.c 590 int idx, int prot, int mask, int fd)
594 evlist->mmap[idx].base = mmap(NULL, evlist->mmap_len, prot,
605 static int perf_evlist__mmap_per_cpu(struct perf_evlist *evlist, int prot, int mask)
623 prot, mask, output) < 0)
645 static int perf_evlist__mmap_per_thread(struct perf_evlist *evlist, int prot, int mask)
661 prot, mask, output) < 0)
703 int prot = PROT_READ | (overwrite ? 0 : PROT_WRITE), mask; local
730 return perf_evlist__mmap_per_thread(evlist, prot, mask);
732 return perf_evlist__mmap_per_cpu(evlist, prot, mask);
  /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/qemu/target-mips/
helper.c 37 int no_mmu_map_address (CPUMIPSState *env, hwaddr *physical, int *prot,
41 *prot = PAGE_READ | PAGE_WRITE;
46 int fixed_mmu_map_address (CPUMIPSState *env, hwaddr *physical, int *prot,
59 *prot = PAGE_READ | PAGE_WRITE;
64 int r4k_map_address (CPUMIPSState *env, hwaddr *physical, int *prot,
95 *prot = PAGE_READ;
97 *prot |= PAGE_WRITE;
108 int *prot, target_ulong address,
130 *prot = PAGE_READ | PAGE_WRITE;
132 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type)
418 int prot = PAGE_READ; local
443 int prot; local
490 int prot; local
    [all...]
  /external/compiler-rt/lib/lsan/
lsan_common.cc 273 uptr begin, end, prot; local
276 &prot)) {
280 bool is_readable = prot & MemoryMappingLayout::kProtectionRead;
  /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...]
  /external/wpa_supplicant_8/src/ap/
gas_serv.c 960 struct anqp_query_info *qi, int prot)
995 di->prot = prot;
1010 if (prot)
1020 const u8 *data, size_t len, int prot)
1070 if (prot)
1123 gas_serv_req_local_processing(hapd, sa, dialog_token, &qi, prot);
1129 const u8 *data, size_t len, int prot)
1217 int prot; local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmip.h 108 uint8 prot; /* Protocol */ member in struct:ipv4_hdr
155 #define IPV6_EXTHDR(prot) (((prot) == IPV6_EXTHDR_HOP) || \
156 ((prot) == IPV6_EXTHDR_ROUTING) || \
157 ((prot) == IPV6_EXTHDR_FRAGMENT) || \
158 ((prot) == IPV6_EXTHDR_AUTH) || \
159 ((prot) == IPV6_EXTHDR_NONE) || \
160 ((prot) == IPV6_EXTHDR_DEST))
  /development/ndk/platforms/android-3/include/linux/sunrpc/
xprt.h 101 int prot; member in struct:rpc_xprt
  /external/iproute2/ip/
iproute.c 918 __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;
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-trace.c 78 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 */ }, },
    [all...]
  /external/mdnsresponder/Clients/
dns-sd.c 1232 DNSServiceProtocol prot = GetProtocol(argv[opi+0]); \/\/ Must specify TCP or UDP local
    [all...]
  /external/ppp/pppd/
lcp.c 550 u_short prot; local
557 GETSHORT(prot, inp);
572 if (protp->protocol == prot && protp->enabled_flag) {
577 warn("Protocol-Reject for unsupported protocol 0x%x", prot);
    [all...]
  /external/qemu/target-i386/
helper.c 969 int error_code, is_dirty, prot, page_size, is_write, is_user; local
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
xprt.h 101 int prot; member in struct:rpc_xprt
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/sunrpc/
xprt.h 101 int prot; member in struct:rpc_xprt
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/sunrpc/
xprt.h 101 int prot; member in struct:rpc_xprt
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/sunrpc/
xprt.h 101 int prot; member in struct:rpc_xprt
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/sunrpc/
xprt.h 101 int prot; member in struct:rpc_xprt
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/sunrpc/
xprt.h 101 int prot; member in struct:rpc_xprt
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
xprt.h 101 int prot; member in struct:rpc_xprt
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
xprt.h 101 int prot; member in struct:rpc_xprt
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/sunrpc/
xprt.h 101 int prot; member in struct:rpc_xprt

Completed in 1316 milliseconds

1 23 4 5 6