Lines Matching refs:src
146 || ((src->field != def) && (to_default || (dest->field == def))))
152 dest->field = src->field;
155 const X509_VERIFY_PARAM *src) in X509_VERIFY_PARAM_inherit() argument
159 if (!src) in X509_VERIFY_PARAM_inherit()
161 inh_flags = dest->inh_flags | src->inh_flags; in X509_VERIFY_PARAM_inherit()
187 dest->check_time = src->check_time; in X509_VERIFY_PARAM_inherit()
195 dest->flags |= src->flags; in X509_VERIFY_PARAM_inherit()
198 if (!X509_VERIFY_PARAM_set1_policies(dest, src->policies)) in X509_VERIFY_PARAM_inherit()
207 if (src->hosts) { in X509_VERIFY_PARAM_inherit()
209 sk_OPENSSL_STRING_deep_copy(src->hosts, str_copy, str_free); in X509_VERIFY_PARAM_inherit()
216 if (!X509_VERIFY_PARAM_set1_email(dest, src->email, src->emaillen)) in X509_VERIFY_PARAM_inherit()
221 if (!X509_VERIFY_PARAM_set1_ip(dest, src->ip, src->iplen)) in X509_VERIFY_PARAM_inherit()
240 const char *src, size_t srclen) in int_x509_param_set1() argument
243 if (src) { in int_x509_param_set1()
245 srclen = strlen(src); in int_x509_param_set1()
250 memcpy(tmp, src, srclen); in int_x509_param_set1()