| /src/crypto/external/bsd/openssh/dist/ |
| ssh-keyscan.c | 334 struct addrinfo hints, *ai, *aitop; local 342 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) { 346 for (ai = aitop; ai; ai = ai->ai_next) { 362 freeaddrinfo(aitop);
|
| channels.h | 117 struct addrinfo *ai, *aitop; member in struct:channel_connect
|
| packet.c | 548 struct addrinfo hints, *ai, *aitop; local 599 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) { 605 for (ai = aitop; ai; ai = ai->ai_next) { 611 freeaddrinfo(aitop);
|
| channels.c | 3883 struct addrinfo hints, *ai, *aitop; local 3920 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) { 3933 for (ai = aitop; ai; ai = ai->ai_next) { 4029 freeaddrinfo(aitop); 4729 if (cctx->aitop) { 4730 if (cctx->aitop->ai_family == AF_UNIX) 4731 free(cctx->aitop); 4733 freeaddrinfo(cctx->aitop); 4775 cctx->aitop = ai; 4781 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx->aitop)) 5089 struct addrinfo hints, *ai, *aitop; local 5204 struct addrinfo hints, *ai, *aitop; local [all...] |
| servconf.c | 974 struct addrinfo hints, *ai, *aitop; local 1006 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0) 1010 for (ai = aitop; ai->ai_next; ai = ai->ai_next) 1013 options->listen_addrs[i].addrs = aitop;
|
| /src/external/bsd/libevent/dist/test/ |
| regress_http.c | 187 struct evutil_addrinfo ai, *aitop; local 198 if (evutil_getaddrinfo(address, strport, &ai, &aitop) != 0) { 202 sa = aitop->ai_addr; 203 slen = aitop->ai_addrlen; 222 evutil_freeaddrinfo(aitop);
|
| /src/external/bsd/ntp/dist/sntp/libevent/test/ |
| regress_http.c | 184 struct evutil_addrinfo ai, *aitop; local 195 if (evutil_getaddrinfo(address, strport, &ai, &aitop) != 0) { 199 sa = aitop->ai_addr; 200 slen = aitop->ai_addrlen; 219 evutil_freeaddrinfo(aitop);
|
| /src/external/bsd/libevent/dist/ |
| http.c | 4466 struct evutil_addrinfo *aitop = NULL; local 4472 aitop = make_addrinfo(address, port); 4474 if (aitop == NULL) 4477 fd = create_bind_socket_nonblock(aitop, reuse); 4479 evutil_freeaddrinfo(aitop);
|
| /src/external/bsd/ntp/dist/sntp/libevent/ |
| http.c | 4464 struct evutil_addrinfo *aitop = NULL; local 4470 aitop = make_addrinfo(address, port); 4472 if (aitop == NULL) 4475 fd = create_bind_socket_nonblock(aitop, reuse); 4477 evutil_freeaddrinfo(aitop);
|