Lines Matching refs:src
143 (to_overwrite || (src->field != def && (to_default || dest->field == def)))
149 dest->field = src->field;
152 const X509_VERIFY_PARAM *src) in X509_VERIFY_PARAM_inherit() argument
157 if (src == NULL) in X509_VERIFY_PARAM_inherit()
159 inh_flags = dest->inh_flags | src->inh_flags; in X509_VERIFY_PARAM_inherit()
178 dest->check_time = src->check_time; in X509_VERIFY_PARAM_inherit()
186 dest->flags |= src->flags; in X509_VERIFY_PARAM_inherit()
189 if (!X509_VERIFY_PARAM_set1_policies(dest, src->policies)) in X509_VERIFY_PARAM_inherit()
198 if (src->hosts != NULL) { in X509_VERIFY_PARAM_inherit()
200 sk_OPENSSL_STRING_deep_copy(src->hosts, str_copy, str_free); in X509_VERIFY_PARAM_inherit()
207 if (!X509_VERIFY_PARAM_set1_email(dest, src->email, src->emaillen)) in X509_VERIFY_PARAM_inherit()
212 if (!X509_VERIFY_PARAM_set1_ip(dest, src->ip, src->iplen)) in X509_VERIFY_PARAM_inherit()
237 const char *src, size_t srclen) in int_x509_param_set1() argument
241 if (src != NULL) { in int_x509_param_set1()
243 srclen = strlen(src); in int_x509_param_set1()
248 memcpy(tmp, src, srclen); in int_x509_param_set1()