Home
last modified time | relevance | path

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

/third_party/curl/lib/
Dcurl_addrinfo.c115 struct addrinfo *aihead; in Curl_getaddrinfo_ex() local
124 error = getaddrinfo(nodename, servname, hints, &aihead); in Curl_getaddrinfo_ex()
130 for(ai = aihead; ai != NULL; ai = ai->ai_next) { in Curl_getaddrinfo_ex()
189 if(aihead) in Curl_getaddrinfo_ex()
190 freeaddrinfo(aihead); in Curl_getaddrinfo_ex()
/third_party/boost/boost/asio/detail/impl/
Dsocket_ops.ipp3165 inline int gai_port(addrinfo_type* aihead, int port, int socktype)
3169 for (addrinfo_type* ai = aihead; ai; ai = ai->ai_next)
3215 inline int gai_serv(addrinfo_type* aihead,
3232 int rc = gai_port(aihead, port, hints->ai_socktype);
3240 int rc = gai_port(aihead, port, SOCK_STREAM);
3244 rc = gai_port(aihead, port, SOCK_DGRAM);
3258 int rc = gai_port(aihead, sptr->s_port, SOCK_STREAM);
3269 int rc = gai_port(aihead, sptr->s_port, SOCK_DGRAM);
3323 inline void freeaddrinfo_emulation(addrinfo_type* aihead)
3325 addrinfo_type* ai = aihead;
[all …]
/third_party/boost/libs/asio/include/boost/asio/detail/impl/
Dsocket_ops.ipp3165 inline int gai_port(addrinfo_type* aihead, int port, int socktype)
3169 for (addrinfo_type* ai = aihead; ai; ai = ai->ai_next)
3215 inline int gai_serv(addrinfo_type* aihead,
3232 int rc = gai_port(aihead, port, hints->ai_socktype);
3240 int rc = gai_port(aihead, port, SOCK_STREAM);
3244 rc = gai_port(aihead, port, SOCK_DGRAM);
3258 int rc = gai_port(aihead, sptr->s_port, SOCK_STREAM);
3269 int rc = gai_port(aihead, sptr->s_port, SOCK_DGRAM);
3323 inline void freeaddrinfo_emulation(addrinfo_type* aihead)
3325 addrinfo_type* ai = aihead;
[all …]