Lines Matching refs:aitop
2626 struct addrinfo ai, *aitop;
2633 if ((ai_result = getaddrinfo(address, NULL, &ai, &aitop)) != 0) {
2640 return (aitop);
2728 struct addrinfo *aitop = NULL; in make_addrinfo() local
2740 if ((ai_result = getaddrinfo(address, strport, &ai, &aitop)) != 0) { in make_addrinfo()
2756 aitop = &ai[cur]; in make_addrinfo()
2757 ((struct sockaddr_in *) aitop->ai_addr)->sin_port = htons(port); in make_addrinfo()
2760 return (aitop); in make_addrinfo()
2767 struct addrinfo *aitop = NULL; in bind_socket() local
2773 aitop = make_addrinfo(address, port); in bind_socket()
2775 if (aitop == NULL) in bind_socket()
2778 fd = bind_socket_ai(aitop, reuse); in bind_socket()
2781 freeaddrinfo(aitop); in bind_socket()
2783 fake_freeaddrinfo(aitop); in bind_socket()