Lines Matching defs:dest
142 /* Macro to test if a field should be copied from src to dest */
145 (to_overwrite || (src->field != def && (to_default || dest->field == def)))
151 dest->field = src->field;
153 int X509_VERIFY_PARAM_inherit(X509_VERIFY_PARAM *dest,
161 inh_flags = dest->inh_flags | src->inh_flags;
164 dest->inh_flags = 0;
179 if (to_overwrite || (dest->flags & X509_V_FLAG_USE_CHECK_TIME) == 0) {
180 dest->check_time = src->check_time;
181 dest->flags &= ~X509_V_FLAG_USE_CHECK_TIME;
186 dest->flags = 0;
188 dest->flags |= src->flags;
191 if (!X509_VERIFY_PARAM_set1_policies(dest, src->policies))
198 sk_OPENSSL_STRING_pop_free(dest->hosts, str_free);
199 dest->hosts = NULL;
201 dest->hosts =
203 if (dest->hosts == NULL)
209 if (!X509_VERIFY_PARAM_set1_email(dest, src->email, src->emaillen))
214 if (!X509_VERIFY_PARAM_set1_ip(dest, src->ip, src->iplen))