HomeSort by relevance Sort by last modified time
    Searched full:addrinfo (Results 101 - 125 of 269) sorted by null

1 2 3 45 6 7 8 91011

  /system/netd/server/
DnsProxyListener.h 60 struct addrinfo* hints,
73 struct addrinfo* mHints; // owned
SockDiag.cpp 46 void operator()(addrinfo *a) { if (a) freeaddrinfo(a); }
49 typedef std::unique_ptr<addrinfo, AddrinfoDeleter> ScopedAddrinfo;
134 addrinfo hints = { .ai_flags = AI_NUMERICHOST };
135 addrinfo *res;
  /libcore/luni/src/main/java/android/system/
StructAddrinfo.java 23 * Information returned/taken by getaddrinfo(3). Corresponds to C's {@code struct addrinfo} from
  /cts/tests/tests/net/jni/
NativeDnsJni.c 33 struct addrinfo *answer;
43 struct addrinfo *current = answer;
76 struct addrinfo *current = answer;
NativeMultinetworkJni.c 43 struct addrinfo *res = NULL;
117 const struct addrinfo kHints = {
123 struct addrinfo *res = NULL;
  /system/weaved/buffet/
socket_stream.cc 68 addrinfo hints = {0, AF_UNSPEC, SOCK_STREAM};
69 addrinfo* result = nullptr;
76 for (const addrinfo* info = result; info != nullptr; info = info->ai_next) {
  /external/toybox/toys/pending/
ip.c 55 } addrinfo; variable in typeref:struct:__anon23713
760 if (TT.is_addr && addrinfo.label && fnmatch(addrinfo.label, link->iface, 0))
967 if ((addrinfo.scope ^ ifa->ifa_scope)&addrinfo.scopemask) return 0;
968 if (addrinfo.ifindex && addrinfo.ifindex != ifa->ifa_index) return 0;
970 if (flag_l && addrinfo.label && ifa->ifa_family == AF_INET6) return 0;
974 if (addrinfo.label && fnmatch(addrinfo.label, label, 0)
    [all...]
  /external/mdnsresponder/mDNSShared/
uds_daemon.c 196 } addrinfo; member in union:request_state::__anon19318
    [all...]
  /external/mtpd/
mtpd.c 263 struct addrinfo hints = {
268 struct addrinfo *records;
269 struct addrinfo *r;
  /external/boringssl/src/crypto/bio/
socket_helper.c 43 struct addrinfo hint, *result, *cur;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
netdb.h 543 struct addrinfo struct
552 struct addrinfo *ai_next; /* Pointer to next in list. */
561 const struct addrinfo *ar_request; /* Additional request specification. */
562 struct addrinfo *ar_result; /* Pointer to result. */
573 /* Possible values for `ai_flags' field in `addrinfo' structure. */
640 __const struct addrinfo *__restrict __req,
641 struct addrinfo **__restrict __pai);
643 /* Free `addrinfo' structure AI including associated storage. */
644 extern void freeaddrinfo (struct addrinfo *__ai) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
netdb.h 569 struct addrinfo struct
578 struct addrinfo *ai_next; /* Pointer to next in list. */
587 const struct addrinfo *ar_request; /* Additional request specification. */
588 struct addrinfo *ar_result; /* Pointer to result. */
599 /* Possible values for `ai_flags' field in `addrinfo' structure. */
666 __const struct addrinfo *__restrict __req,
667 struct addrinfo **__restrict __pai);
669 /* Free `addrinfo' structure AI including associated storage. */
670 extern void freeaddrinfo (struct addrinfo *__ai) __THROW;
  /external/curl/lib/
hostip6.c 156 * successful, the 'addrinfo' is returned and the forth argument will point to
165 struct addrinfo hints;
setup-os400.h 46 const struct addrinfo * hints,
47 struct addrinfo * * res);
asyn-thread.c 151 const struct addrinfo *hints);
165 struct addrinfo hints;
206 const struct addrinfo *hints)
378 const struct addrinfo *hints)
594 struct addrinfo hints;
  /external/libpcap/Win32/Include/
ip6_misc.h 150 struct addrinfo { struct
158 struct addrinfo *ai_next; /* next structure in linked list */
  /external/valgrind/helgrind/
hg_addrdescr.c 48 void HG_(describe_addr) ( Addr a, /*OUT*/AddrInfo* ai )
107 AddrInfo glai;
  /external/netperf/src/
nettest_bsd.h 598 extern struct addrinfo *complete_addrinfo(char *controlhost,
605 extern void complete_addrinfos(struct addrinfo **remote,
606 struct addrinfo **local,
618 struct addrinfo *source,
619 struct addrinfo *destination);
620 extern void set_port_number(struct addrinfo *res,
676 extern SOCKET create_data_socket(struct addrinfo *res);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_platform_limits_posix.cc 988 CHECK_TYPE_SIZE(addrinfo); variable
    [all...]
  /external/autotest/client/tests/kvm/deps/
finish.cpp 95 struct addrinfo *result = NULL, hints;
  /external/curl/tests/
memanalyze.pl 331 $addrinfo{$add}=1;
341 if(!$addrinfo{$1}) {
345 $addrinfo{$1}=0;
393 if($addrinfo{$_} == 1) {
  /external/libevent/
http-internal.h 41 struct addrinfo;
  /external/libpcap/pcap/
namedb.h 61 struct addrinfo *pcap_nametoaddrinfo(const char *);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
resolver_service_base.hpp 64 // Helper class to perform exception-safe cleanup of addrinfo objects.
socket_types.hpp 74 typedef addrinfo addrinfo_type;

Completed in 1145 milliseconds

1 2 3 45 6 7 8 91011