HomeSort by relevance Sort by last modified time
    Searched defs:aitop (Results 1 - 5 of 5) sorted by null

  /external/openssh/
canohost.c 52 struct addrinfo hints, *ai, *aitop; local
116 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
122 for (ai = aitop; ai; ai = ai->ai_next) {
128 freeaddrinfo(aitop);
ssh-keyscan.c 316 struct addrinfo hints, *ai, *aitop; local
324 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
328 for (ai = aitop; ai; ai = ai->ai_next) {
344 freeaddrinfo(aitop);
channels.h 89 struct addrinfo *ai, *aitop; member in struct:channel_connect
servconf.c 612 struct addrinfo hints, *ai, *aitop; local
621 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
625 for (ai = aitop; ai->ai_next; ai = ai->ai_next)
628 options->listen_addrs = aitop;
    [all...]
channels.c 2803 struct addrinfo hints, *ai, *aitop; local
3875 struct addrinfo hints, *ai, *aitop; local
4002 struct addrinfo hints, *ai, *aitop; local
    [all...]

Completed in 74 milliseconds