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

1234567

/freebsd-13-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-13-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-13-stable/lib/libc/net/
H A Dgetaddrinfo.c365 next = ai->ai_next;
425 pai->ai_next = NULL;
432 hints->ai_addr || hints->ai_next)
615 error = explore_copy(pai, afai, &cur->ai_next);
619 while (cur && cur->ai_next)
620 cur = cur->ai_next;
629 if (sentinel.ai_next) {
646 sentinel.ai_next->ai_canonname;
647 sentinel.ai_next->ai_canonname = NULL;
649 if (sentinel.ai_next
[all...]
/freebsd-13-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-13-stable/usr.sbin/lpr/common_source/
H A Dnet.c123 if (ai->ai_next) {
124 ai = ai->ai_next;
155 if (ai->ai_next != NULL) {
156 ai = ai->ai_next;
231 for (lr = local_res; lr; lr = lr->ai_next) {
236 for (rr = remote_res; rr; rr = rr->ai_next) {
/freebsd-13-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-13-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-13-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-13-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-13-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-13-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-13-stable/usr.bin/finger/
H A Dnet.c89 multi = (ai0->ai_next) != 0;
97 for (ai = ai0; ai != NULL; ai = ai->ai_next) {
/freebsd-13-stable/crypto/heimdal/lib/ipc/
H A Dts-http.c89 for (res = res0; res ; res = res->ai_next) {
/freebsd-13-stable/contrib/ntp/lib/isc/win32/
H A Dnetdb.h38 struct addrinfo *ai_next; /* Next structure in linked list */ member in struct:addrinfo
/freebsd-13-stable/contrib/ntp/include/
H A Dntp_rfc2553.h191 struct addrinfo *ai_next; /* next structure in linked list */ member in struct:addrinfo
/freebsd-13-stable/usr.sbin/pnfsdsfile/
H A Dpnfsdsfile.c203 ad = ad->ai_next;
241 ad = ad->ai_next;
283 ad = ad->ai_next;
297 newres = newres->ai_next;
/freebsd-13-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 252 milliseconds

1234567