Lines Matching refs:tmod
341 CONF_MODULE *tmod = NULL; in module_add() local
360 if ((tmod = OPENSSL_zalloc(sizeof(*tmod))) == NULL) in module_add()
363 tmod->dso = dso; in module_add()
364 tmod->name = OPENSSL_strdup(name); in module_add()
365 tmod->init = ifunc; in module_add()
366 tmod->finish = ffunc; in module_add()
367 if (tmod->name == NULL) in module_add()
370 if (!sk_CONF_MODULE_push(new_modules, tmod)) in module_add()
378 return tmod; in module_add()
382 if (tmod != NULL) { in module_add()
383 OPENSSL_free(tmod->name); in module_add()
384 OPENSSL_free(tmod); in module_add()
398 CONF_MODULE *tmod; in module_find() local
417 tmod = sk_CONF_MODULE_value(mods, i); in module_find()
418 if (strncmp(tmod->name, name, nchar) == 0) { in module_find()
420 return tmod; in module_find()