Lines Matching refs:db

27 static char *conf_lhash_get_string(void *db, const char *section, const char *value);
28 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, const char *section);
117 if (!ctx->db || !ctx->db_meth) { in do_ext_nconf()
401 if (!ctx->db || !ctx->db_meth || !ctx->db_meth->get_string) { in X509V3_get_string()
406 return ctx->db_meth->get_string(ctx->db, name, section); in X509V3_get_string()
412 if (!ctx->db || !ctx->db_meth || !ctx->db_meth->get_section) { in STACK_OF()
417 return ctx->db_meth->get_section(ctx->db, section); in STACK_OF()
426 ctx->db_meth->free_string(ctx->db, str); in X509V3_string_free()
434 ctx->db_meth->free_section(ctx->db, section); in X509V3_section_free()
437 static char *nconf_get_string(void *db, const char *section, const char *value) in nconf_get_string() argument
439 return NCONF_get_string(db, section, value); in nconf_get_string()
442 static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, const char *section) in STACK_OF()
444 return NCONF_get_section(db, section); in STACK_OF()
461 ctx->db = conf; in X509V3_set_nconf()
477 ctx->db = NULL; in X509V3_set_ctx()
528 static char *conf_lhash_get_string(void *db, const char *section, const char *value) in conf_lhash_get_string() argument
530 return CONF_get_string(db, section, value); in conf_lhash_get_string()
533 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, const char *section) in STACK_OF()
535 return CONF_get_section(db, section); in STACK_OF()
552 ctx->db = lhash; in X509V3_set_conf_lhash()