Searched defs:aitop (Results 1 - 7 of 7) sorted by relevance

/external/openssh/
H A Dcanohost.c53 struct addrinfo hints, *ai, *aitop; local
121 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
127 for (ai = aitop; ai; ai = ai->ai_next) {
133 freeaddrinfo(aitop);
H A Dchannels.h84 struct addrinfo *ai, *aitop; member in struct:channel_connect
H A Dssh-keyscan.c291 struct addrinfo hints, *ai, *aitop; local
299 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
301 for (ai = aitop; ai; ai = ai->ai_next) {
317 freeaddrinfo(aitop);
H A Dsshconnect.c345 struct addrinfo hints, *ai, *aitop; local
359 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
373 for (ai = aitop; ai; ai = ai->ai_next) {
407 freeaddrinfo(aitop);
H A Dservconf.c524 struct addrinfo hints, *ai, *aitop; local
533 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
537 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
540 options->listen_addrs = aitop;
H A Dchannels.c2644 struct addrinfo hints, *ai, *aitop; local
2704 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2718 for (ai = aitop; ai; ai = ai->ai_next) {
2801 freeaddrinfo(aitop);
3126 if (cctx->aitop)
3127 freeaddrinfo(cctx->aitop);
3130 cctx->ai = cctx->aitop = NULL;
3149 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3157 cctx.ai = cctx.aitop;
3257 struct addrinfo hints, *ai, *aitop; local
3384 struct addrinfo hints, *ai, *aitop; local
[all...]
/external/chromium/third_party/libevent/
H A Dhttp.c2626 struct addrinfo ai, *aitop;
2633 if ((ai_result = getaddrinfo(address, NULL, &ai, &aitop)) != 0) {
2640 return (aitop);
2728 struct addrinfo *aitop = NULL; local
2740 if ((ai_result = getaddrinfo(address, strport, &ai, &aitop)) != 0) {
2756 aitop = &ai[cur];
2757 ((struct sockaddr_in *) aitop->ai_addr)->sin_port = htons(port);
2760 return (aitop);
2767 struct addrinfo *aitop = NULL; local
2773 aitop
[all...]

Completed in 181 milliseconds