Searched refs:ai_next (Results 1 - 25 of 116) sorted by relevance

12345

/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dfreeaddrinfo.c51 ai = ai->ai_next;
H A Dgetnameinfo_verified.c80 for (a = ai; a != NULL; a = a->ai_next) {
H A Dmini_inetd.c98 for (nalloc = 0, a = ai; a != NULL; a = a->ai_next)
109 for (i = 0, a = ai; a != NULL; a = a->ai_next) {
H A Dgetaddrinfo-test.c88 for (r = res; r != NULL; r = r->ai_next) {
/freebsd-10.0-release/tools/regression/lib/libc/nss/
H A Dtest-getaddr.c86 if (src->ai_next != NULL) {
87 dest->ai_next = (struct addrinfo *)malloc(
89 assert(dest->ai_next != NULL);
90 clone_addrinfo(dest->ai_next, src->ai_next);
119 if ((ai1->ai_next == NULL) && (ai2->ai_next == NULL))
122 return (compare_addrinfo_(ai1->ai_next, ai2->ai_next));
157 free_addrinfo(ai->ai_next);
[all...]
/freebsd-10.0-release/lib/libc/net/
H A Dgetaddrinfo.c336 next = ai->ai_next;
397 pai->ai_next = NULL;
404 hints->ai_addr || hints->ai_next)
568 error = explore_copy(pai, afai, &cur->ai_next);
572 while (cur && cur->ai_next)
573 cur = cur->ai_next;
582 if (sentinel.ai_next) {
599 sentinel.ai_next->ai_canonname;
600 sentinel.ai_next->ai_canonname = NULL;
602 if (sentinel.ai_next
[all...]
H A Drcmd.c145 for (ai = res; ai; ai = ai->ai_next)
155 if (errno != EAGAIN && ai->ai_next) {
156 ai = ai->ai_next;
180 if (ai->ai_next == NULL && (!refused || timo > 16)) {
198 if ((ai = ai->ai_next) == NULL) {
396 for (r = res; r; r = r->ai_next) {
747 for (r = res; r ; r = r->ai_next) {
/freebsd-10.0-release/contrib/bsnmp/lib/
H A Dsupport.h60 struct addrinfo *ai_next; member in struct:addrinfo
H A Dsupport.c150 (*res)->ai_next = NULL;
186 next = p->ai_next;
/freebsd-10.0-release/usr.sbin/lpr/common_source/
H A Dnet.c121 if (ai->ai_next) {
122 ai = ai->ai_next;
153 if (ai->ai_next != NULL) {
154 ai = ai->ai_next;
229 for (lr = local_res; lr; lr = lr->ai_next) {
234 for (rr = remote_res; rr; rr = rr->ai_next) {
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dexpand_hostname.c83 for (a = ai; a != NULL; a = a->ai_next) {
165 for (a = ai; a != NULL; a = a->ai_next) {
/freebsd-10.0-release/contrib/tcpdump/missing/
H A Daddrinfo.h79 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
/freebsd-10.0-release/contrib/ldns/compat/
H A Dfake-rfc2553.c112 next = ai->ai_next;
218 prev->ai_next = cur;
H A Dfake-rfc2553.h149 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
/freebsd-10.0-release/contrib/unbound/compat/
H A Dfake-rfc2553.c110 next = ai->ai_next;
216 prev->ai_next = cur;
H A Dfake-rfc2553.h144 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dfake-rfc2553.c115 next = ai->ai_next;
224 prev->ai_next = cur;
H A Dfake-rfc2553.h145 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
/freebsd-10.0-release/usr.bin/finger/
H A Dnet.c86 multi = (ai0->ai_next) != 0;
94 for (ai = ai0; ai != 0; ai = ai->ai_next) {
/freebsd-10.0-release/crypto/heimdal/lib/ipc/
H A Dts-http.c89 for (res = res0; res ; res = res->ai_next) {
/freebsd-10.0-release/contrib/tcp_wrappers/
H A Dtcpdmatch.c193 for (res = hp, count = 0; res; res = res->ai_next, count++) {
269 for (res = hp, count = 0; res; res = res->ai_next, count++) {
289 if (res->ai_next)
/freebsd-10.0-release/sbin/setkey/
H A Dparse.y168 if ($3->ai_next || $4->ai_next) {
522 if (src->ai_next || dst->ai_next) {
564 if (src->ai_next || dst->ai_next) {
803 for (s = srcs; s; s = s->ai_next) {
804 for (d = dsts; d; d = d->ai_next) {
923 for (s = srcs; s; s = s->ai_next) {
924 for (d = dsts; d; d = d->ai_next) {
[all...]
/freebsd-10.0-release/contrib/ntp/include/
H A Dntp_rfc2553.h241 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
/freebsd-10.0-release/crypto/heimdal/kadmin/
H A Dkadm_conn.c258 for(ap = ai; ap; ap = ap->ai_next)
267 for(ap = ai; ap; ap = ap->ai_next) {
/freebsd-10.0-release/usr.bin/logger/
H A Dlogger.c207 for (maxs = 0, r = res; r; r = r->ai_next, maxs++);
211 for (r = res; r; r = r->ai_next) {

Completed in 215 milliseconds

12345