Lines Matching refs:res
80 BIO_ADDRINFO *res = NULL; in init_client() local
92 &res); in init_client()
108 for (ai = res; ai != NULL; ai = BIO_ADDRINFO_next(ai)) { in init_client()
187 BIO_ADDRINFO_family(res) == AF_INET6 ? "IPv6 " : in init_client()
189 BIO_ADDRINFO_family(res) == AF_INET ? "IPv4 " : in init_client()
190 BIO_ADDRINFO_family(res) == AF_UNIX ? "unix " : "", in init_client()
214 BIO_ADDRINFO_free(res); in init_client()
295 BIO_ADDRINFO *res = NULL; in do_server() local
308 &res)) { in do_server()
315 OPENSSL_assert((family == AF_UNSPEC || family == BIO_ADDRINFO_family(res)) in do_server()
316 && (type == 0 || type == BIO_ADDRINFO_socktype(res)) in do_server()
317 && (protocol == 0 || protocol == BIO_ADDRINFO_protocol(res))); in do_server()
319 sock_family = BIO_ADDRINFO_family(res); in do_server()
320 sock_type = BIO_ADDRINFO_socktype(res); in do_server()
321 sock_protocol = BIO_ADDRINFO_protocol(res); in do_server()
322 sock_address = BIO_ADDRINFO_address(res); in do_server()
323 next = BIO_ADDRINFO_next(res); in do_server()
354 BIO_ADDRINFO_free(res); in do_server()
382 BIO_ADDRINFO_free(res); in do_server()
383 res = NULL; in do_server()