Lines Matching defs:conf
349 CONF *conf;
352 conf = NCONF_new_ex(app_get0_libctx(), NULL);
353 i = NCONF_load_bio(conf, in, &errorline);
355 return conf;
368 NCONF_free(conf);
386 CONF *conf;
391 conf = app_load_config_bio(in, filename);
395 conf = NCONF_new_ex(app_get0_libctx(), NULL);
397 return conf;
419 int add_oid_section(CONF *conf)
426 if ((p = NCONF_get_string(conf, NULL, "oid_section")) == NULL) {
430 if ((sktmp = NCONF_get_section(conf, p)) == NULL) {
447 CONF *conf = NULL;
450 if ((conf = app_load_config_verbose(configfile, 1)) == NULL)
452 if (configfile != default_config_file && !app_load_modules(conf)) {
453 NCONF_free(conf);
454 conf = NULL;
457 return conf;