Lines Matching refs:cnf
112 static int module_run(const CONF *cnf, char *name, char *value,
118 const CONF *cnf);
119 static CONF_MODULE *module_load_dso(const CONF *cnf, char *name, char *value,
124 int CONF_modules_load(const CONF *cnf, const char *appname, in CONF_modules_load() argument
133 if (!cnf) in CONF_modules_load()
137 vsection = NCONF_get_string(cnf, NULL, appname); in CONF_modules_load()
140 vsection = NCONF_get_string(cnf, NULL, "openssl_conf"); in CONF_modules_load()
148 values = NCONF_get_section(cnf, vsection); in CONF_modules_load()
156 ret = module_run(cnf, vl->name, vl->value, flags); in CONF_modules_load()
206 static int module_run(const CONF *cnf, char *name, char *value, in module_run() argument
216 md = module_load_dso(cnf, name, value, flags); in module_run()
228 ret = module_init(md, name, value, cnf); in module_run()
245 static CONF_MODULE *module_load_dso(const CONF *cnf, char *name, char *value, in module_load_dso() argument
255 path = NCONF_get_string(cnf, value, "path"); in module_load_dso()
348 const CONF *cnf) in module_init() argument
370 ret = pmod->init(imod, cnf); in module_init()