Lines Matching refs:cnf
74 static int module_run(const CONF *cnf, const char *name, const char *value,
81 const CONF *cnf);
82 static CONF_MODULE *module_load_dso(const CONF *cnf, const char *name,
110 static int conf_diagnostics(const CONF *cnf) in conf_diagnostics() argument
112 return _CONF_get_number(cnf, NULL, "config_diagnostics") != 0; in conf_diagnostics()
117 int CONF_modules_load(const CONF *cnf, const char *appname, in CONF_modules_load() argument
125 if (!cnf) in CONF_modules_load()
128 if (conf_diagnostics(cnf)) in CONF_modules_load()
136 vsection = NCONF_get_string(cnf, NULL, appname); in CONF_modules_load()
139 vsection = NCONF_get_string(cnf, NULL, "openssl_conf"); in CONF_modules_load()
147 values = NCONF_get_section(cnf, vsection); in CONF_modules_load()
165 ret = module_run(cnf, vl->name, vl->value, flags); in CONF_modules_load()
243 static int module_run(const CONF *cnf, const char *name, const char *value, in module_run() argument
256 md = module_load_dso(cnf, name, value); in module_run()
266 ret = module_init(md, name, value, cnf); in module_run()
279 static CONF_MODULE *module_load_dso(const CONF *cnf, in module_load_dso() argument
290 path = _CONF_get_string(cnf, value, "path"); in module_load_dso()
400 const CONF *cnf) in module_init() argument
421 ret = pmod->init(imod, cnf); in module_init()