Home | History | Annotate | Download | only in x509v3

Lines Matching refs:db

73 static char *conf_lhash_get_string(void *db, char *section, char *value);
74 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section);
154 if(!ctx->db || !ctx->db_meth)
387 if(!ctx->db || !ctx->db_meth || !ctx->db_meth->get_string)
393 return ctx->db_meth->get_string(ctx->db, name, section);
399 if(!ctx->db || !ctx->db_meth || !ctx->db_meth->get_section)
405 return ctx->db_meth->get_section(ctx->db, section);
413 ctx->db_meth->free_string(ctx->db, str);
420 ctx->db_meth->free_section(ctx->db, section);
423 static char *nconf_get_string(void *db, char *section, char *value)
425 return NCONF_get_string(db, section, value);
428 static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, char *section)
430 return NCONF_get_section(db, section);
443 ctx->db = conf;
476 static char *conf_lhash_get_string(void *db, char *section, char *value)
478 return CONF_get_string(db, section, value);
481 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section)
483 return CONF_get_section(db, section);
496 ctx->db = lhash;