Lines Matching refs:hosts
54 sk_OPENSSL_STRING_pop_free(vpm->hosts, str_free);
55 vpm->hosts = NULL;
64 if (vpm->hosts == NULL &&
65 (vpm->hosts = sk_OPENSSL_STRING_new_null()) == NULL) {
70 if (!sk_OPENSSL_STRING_push(vpm->hosts, copy)) {
72 if (sk_OPENSSL_STRING_num(vpm->hosts) == 0) {
73 sk_OPENSSL_STRING_free(vpm->hosts);
74 vpm->hosts = NULL;
103 sk_OPENSSL_STRING_pop_free(param->hosts, str_free);
197 if (test_x509_verify_param_copy(hosts, NULL)) {
198 sk_OPENSSL_STRING_pop_free(dest->hosts, str_free);
199 dest->hosts = NULL;
200 if (src->hosts != NULL) {
201 dest->hosts =
202 sk_OPENSSL_STRING_deep_copy(src->hosts, str_copy, str_free);
203 if (dest->hosts == NULL)
380 return sk_OPENSSL_STRING_value(param->hosts, idx);