HomeSort by relevance Sort by last modified time
    Searched refs:ai_next (Results 1 - 25 of 214) sorted by null

1 2 3 4 5 6 7 8 9

  /libcore/luni/src/main/java/android/system/
StructAddrinfo.java 53 public StructAddrinfo ai_next; field in class:StructAddrinfo
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getaddrinfo.c 325 next = ai->ai_next;
383 pai->ai_next = NULL;
390 hints->ai_addr || hints->ai_next)
477 error = explore_null(pai, servname, &cur->ai_next,
481 &cur->ai_next, &svd);
486 while (cur->ai_next)
487 cur = cur->ai_next;
495 if (sentinel.ai_next)
529 error = explore_fqdn(pai, hostname, servname, &cur->ai_next,
532 while (cur && cur->ai_next)
    [all...]
  /bionic/libc/dns/net/
getaddrinfo.c 333 next = ai->ai_next;
485 // struct addrinfo *ai_next; /* next structure in linked list */
531 nextres = &ai->ai_next;
608 pai->ai_next = NULL;
615 hints->ai_addr || hints->ai_next)
702 error = explore_null(pai, servname, &cur->ai_next);
705 &cur->ai_next);
710 while (cur->ai_next)
711 cur = cur->ai_next;
719 if (sentinel.ai_next)
    [all...]
  /external/c-ares/
ares_ipv6.h 45 struct addrinfo *ai_next; member in struct:addrinfo
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver_query.hpp 73 hints_.ai_next = 0;
110 hints_.ai_next = 0;
158 hints_.ai_next = 0;
209 hints_.ai_next = 0;
  /external/toybox/lib/
net.c 36 for (ai2 = ai; ai; ai = ai->ai_next) {
37 fd = (ai->ai_next ? socket : xsocket)(ai->ai_family, ai->ai_socktype,
40 else if (!ai->ai_next) perror_exit("connect");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
getaddrinfo.c 215 next = ai->ai_next;
263 sentinel.ai_next = NULL;
273 pai->ai_next = NULL;
281 hints->ai_addr || hints->ai_next)
393 GET_AI(cur->ai_next, gai_afd, gai_afd->a_addrany, port);
395 * GET_CANONNAME(cur->ai_next, "anyaddr");
398 GET_AI(cur->ai_next, gai_afd, gai_afd->a_loopback,
401 * GET_CANONNAME(cur->ai_next, "localhost");
404 cur = cur->ai_next;
406 top = sentinel.ai_next;
    [all...]
addrinfo.h 136 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
  /external/python/cpython2/Modules/
getaddrinfo.c 215 next = ai->ai_next;
263 sentinel.ai_next = NULL;
273 pai->ai_next = NULL;
281 hints->ai_addr || hints->ai_next)
393 GET_AI(cur->ai_next, gai_afd, gai_afd->a_addrany, port);
395 * GET_CANONNAME(cur->ai_next, "anyaddr");
398 GET_AI(cur->ai_next, gai_afd, gai_afd->a_loopback,
401 * GET_CANONNAME(cur->ai_next, "localhost");
404 cur = cur->ai_next;
406 top = sentinel.ai_next;
    [all...]
  /external/libpcap/
sockutils.c 381 tempaddrinfo = tempaddrinfo->ai_next;
875 struct addrinfo *addrinfo, *ai_next; local
918 /* ai_next is required to preserve the content of addrinfo, in order to deallocate it properly */
919 ai_next = addrinfo;
920 while (ai_next)
922 if (sock_cmpaddr(from, (struct sockaddr_storage *) ai_next->ai_addr) == 0)
932 ai_next = ai_next->ai_next;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wspiapi.h 175 n->ai_next = p->ai_next;
176 p->ai_next = n;
177 p = n->ai_next;
195 ptHead = p->ai_next;
  /external/curl/lib/
curl_addrinfo.c 84 canext = ca->ai_next;
128 for(ai = aihead; ai != NULL; ai = ai->ai_next) {
164 ca->ai_next = NULL;
188 calast->ai_next = ca;
245 * struct Curl_addrinfo *ai_next;
316 prevai->ai_next = ai;
578 for(ca = addrinfo; ca != NULL; ca = ca->ai_next) {
curl_addrinfo.h 59 struct Curl_addrinfo *ai_next; member in struct:Curl_addrinfo
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetAddrInfo/
GetAddrInfo.c 106 pInfo = pInfo->ai_next;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetNameInfo/
GetNameInfo.c 106 pInfo = pInfo->ai_next;
  /external/ltp/testcases/network/lib6/
getaddrinfo_01.c 90 for (pai = aires; pai; pai = pai->ai_next) {
128 for (pai = aires; pai; pai = pai->ai_next)
167 for (pai = aires; pai; pai = pai->ai_next) {
211 for (pai = aires; pai; pai = pai->ai_next) {
279 for (pai = aires; pai; pai = pai->ai_next) {
333 for (pai = aires; pai; pai = pai->ai_next) {
430 for (pai = aires; pai; pai = pai->ai_next) {
489 for (pai = aires; pai; pai = pai->ai_next) {
549 for (pai = aires; pai; pai = pai->ai_next) {
587 for (pai = aires; pai; pai = pai->ai_next)
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
netdb.h 91 struct addrinfo *ai_next; /* Pointer to next in list. */ member in struct:addrinfo
  /system/extras/multinetwork/
dnschk.cpp 77 for (struct addrinfo* rp = result; rp != nullptr; rp = rp->ai_next) {
  /cts/tests/tests/net/jni/
NativeDnsJni.c 57 current = current->ai_next;
90 current = current->ai_next;
  /external/openssh/openbsd-compat/
fake-rfc2553.c 115 next = ai->ai_next;
224 prev->ai_next = cur;
fake-rfc2553.h 146 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
addrinfo.h 136 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
addrinfo.h 135 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
addrinfo.h 145 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
  /external/boringssl/src/crypto/bio/
socket_helper.c 62 for (cur = result; cur; cur = cur->ai_next) {

Completed in 1128 milliseconds

1 2 3 4 5 6 7 8 9