Lines Matching refs:from
111 * This function determines how parameters are "inherited" from one structure
114 * 1. If a child structure needs to have its values initialized from a parent
123 * Normally any values which are set in the default are not copied from the
128 * which will be used only if nothing new is set in "from".
142 /* Macro to test if a field should be copied from src to dest */
222 const X509_VERIFY_PARAM *from)
233 ret = X509_VERIFY_PARAM_inherit(to, from);
412 * Move peername from one param structure to another, freeing any name present
417 X509_VERIFY_PARAM *from)
419 char *peername = (from != NULL) ? from->peername : NULL;
425 if (from != NULL)
426 from->peername = NULL;