Lines Matching defs:res
625 int family, int socktype, BIO_ADDRINFO **res)
627 return BIO_lookup_ex(host, service, lookup_type, family, socktype, 0, res);
643 * @res: Storage place for the resulting list of returned addresses
653 int family, int socktype, int protocol, BIO_ADDRINFO **res)
676 if (addrinfo_wrap(family, socktype, host, strlen(host), 0, res))
707 /* Note that |res| SHOULD be a 'struct addrinfo **' thanks to
713 switch ((gai_ret = getaddrinfo(host, service, &hints, res))) {
888 *res = NULL;
919 tmp_bai->bai_next = *res;
920 *res = tmp_bai;
923 BIO_ADDRINFO_free(*res);
924 *res = NULL;