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

123456

/freebsd-11-stable/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-11-stable/lib/libc/tests/nss/
H A Dgetaddrinfo_test.c88 if (src->ai_next != NULL) {
89 dest->ai_next = malloc(sizeof(struct addrinfo));
90 ATF_REQUIRE(dest->ai_next != NULL);
91 clone_addrinfo(dest->ai_next, src->ai_next);
121 if (ai1->ai_next == NULL && ai2->ai_next == NULL)
124 return (compare_addrinfo_(ai1->ai_next, ai2->ai_next));
156 free_addrinfo(ai->ai_next);
[all...]
/freebsd-11-stable/lib/libc/net/
H A Dgetaddrinfo.c363 next = ai->ai_next;
423 pai->ai_next = NULL;
430 hints->ai_addr || hints->ai_next)
613 error = explore_copy(pai, afai, &cur->ai_next);
617 while (cur && cur->ai_next)
618 cur = cur->ai_next;
627 if (sentinel.ai_next) {
644 sentinel.ai_next->ai_canonname;
645 sentinel.ai_next->ai_canonname = NULL;
647 if (sentinel.ai_next
[all...]
/freebsd-11-stable/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-11-stable/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-11-stable/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-11-stable/contrib/ntp/libntp/
H A Dntp_rfc2553.c185 ai_nxt = ai_src->ai_next;
204 ai_nxt = ai_src->ai_next;
217 if (NULL != ai_cpy->ai_next) {
219 ai_cpy->ai_next = NULL;
221 ai_cpy->ai_next = ai_cpy + 1;
H A Dsocktohost.c89 for (ai = alist; ai != NULL; ai = ai->ai_next) {
/freebsd-11-stable/contrib/libpcap/
H A Dsockutils.c451 tempaddrinfo = tempaddrinfo->ai_next;
1264 struct addrinfo *addrinfo, *ai_next; local
1314 /* ai_next is required to preserve the content of addrinfo, in order to deallocate it properly */
1315 ai_next = addrinfo;
1316 while (ai_next)
1318 if (sock_cmpaddr(from, (struct sockaddr_storage *) ai_next->ai_addr) == 0)
1329 ai_next = ai_next->ai_next;
1626 if (addrinfo->ai_next !
[all...]
/freebsd-11-stable/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-11-stable/contrib/unbound/compat/
H A Dfake-rfc2553.c110 next = ai->ai_next;
214 prev->ai_next = cur;
H A Dfake-rfc2553.h144 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
/freebsd-11-stable/usr.bin/finger/
H A Dnet.c87 multi = (ai0->ai_next) != 0;
95 for (ai = ai0; ai != NULL; ai = ai->ai_next) {
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dfake-rfc2553.c115 next = ai->ai_next;
224 prev->ai_next = cur;
H A Dfake-rfc2553.h146 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
/freebsd-11-stable/contrib/ntp/include/
H A Dntp_rfc2553.h191 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dnetdb.h38 struct addrinfo *ai_next; /* Next structure in linked list */ member in struct:addrinfo
/freebsd-11-stable/crypto/heimdal/lib/ipc/
H A Dts-http.c89 for (res = res0; res ; res = res->ai_next) {
/freebsd-11-stable/sbin/setkey/
H A Dparse.y171 if ($3->ai_next || $4->ai_next) {
548 if (src->ai_next || dst->ai_next) {
590 if (src->ai_next || dst->ai_next) {
829 for (s = srcs; s; s = s->ai_next) {
830 for (d = dsts; d; d = d->ai_next) {
962 for (s = srcs; s; s = s->ai_next) {
963 for (d = dsts; d; d = d->ai_next) {
[all...]
/freebsd-11-stable/contrib/tcp_wrappers/
H A Dtcpdmatch.c191 for (res = hp, count = 0; res; res = res->ai_next, count++) {
267 for (res = hp, count = 0; res; res = res->ai_next, count++) {
287 if (res->ai_next)

Completed in 232 milliseconds

123456