Home
last modified time | relevance | path

Searched refs:aitop (Results 1 – 3 of 3) sorted by relevance

/external/tcpdump/
Dconfigure.in421 struct addrinfo hints, *ai, *aitop;
430 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
434 for (ai = aitop; ai; ai = ai->ai_next) {
496 if (aitop)
497 freeaddrinfo(aitop);
501 if (aitop)
502 freeaddrinfo(aitop);
Dconfigure5137 struct addrinfo hints, *ai, *aitop;
5146 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
5150 for (ai = aitop; ai; ai = ai->ai_next) {
5212 if (aitop)
5213 freeaddrinfo(aitop);
5217 if (aitop)
5218 freeaddrinfo(aitop);
/external/libevent/
Dhttp.c3895 struct evutil_addrinfo *aitop = NULL; in bind_socket() local
3901 aitop = make_addrinfo(address, port); in bind_socket()
3903 if (aitop == NULL) in bind_socket()
3906 fd = bind_socket_ai(aitop, reuse); in bind_socket()
3908 evutil_freeaddrinfo(aitop); in bind_socket()