Lines Matching refs:CONF

106 CONF *NCONF_new(void *method) {  in NCONF_new()
107 CONF *conf; in NCONF_new()
113 conf = OPENSSL_malloc(sizeof(CONF)); in NCONF_new()
130 OPENSSL_PUT_ERROR(CONF, ERR_R_MALLOC_FAILURE); in CONF_VALUE_new()
158 void NCONF_free(CONF *conf) { in NCONF_free()
168 static CONF_VALUE *NCONF_new_section(const CONF *conf, const char *section) { in NCONF_new_section()
207 static int str_copy(CONF *conf, char *section, char **pto, char *from) { in str_copy()
308 OPENSSL_PUT_ERROR(CONF, CONF_R_NO_CLOSE_BRACE); in str_copy()
327 OPENSSL_PUT_ERROR(CONF, CONF_R_VARIABLE_HAS_NO_VALUE); in str_copy()
332 OPENSSL_PUT_ERROR(CONF, CONF_R_VARIABLE_EXPANSION_TOO_LONG); in str_copy()
336 OPENSSL_PUT_ERROR(CONF, ERR_R_MALLOC_FAILURE); in str_copy()
373 static CONF_VALUE *get_section(const CONF *conf, const char *section) { in get_section()
381 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section) { in STACK_OF()
389 const char *NCONF_get_string(const CONF *conf, const char *section, in NCONF_get_string()
403 static int add_string(const CONF *conf, CONF_VALUE *section, in add_string()
424 static char *eat_ws(CONF *conf, char *p) { in eat_ws()
433 static char *eat_alpha_numeric(CONF *conf, char *p) { in eat_alpha_numeric()
446 static char *scan_quote(CONF *conf, char *p) { in scan_quote()
466 static char *scan_dquote(CONF *conf, char *p) { in scan_dquote()
486 static void clear_comments(CONF *conf, char *p) { in clear_comments()
523 static int def_load_bio(CONF *conf, BIO *in, long *out_error_line) { in def_load_bio()
537 OPENSSL_PUT_ERROR(CONF, ERR_R_BUF_LIB); in def_load_bio()
543 OPENSSL_PUT_ERROR(CONF, ERR_R_MALLOC_FAILURE); in def_load_bio()
549 OPENSSL_PUT_ERROR(CONF, CONF_R_UNABLE_TO_CREATE_NEW_SECTION); in def_load_bio()
557 OPENSSL_PUT_ERROR(CONF, ERR_R_BUF_LIB); in def_load_bio()
626 OPENSSL_PUT_ERROR(CONF, CONF_R_MISSING_CLOSE_SQUARE_BRACKET); in def_load_bio()
637 OPENSSL_PUT_ERROR(CONF, CONF_R_UNABLE_TO_CREATE_NEW_SECTION); in def_load_bio()
654 OPENSSL_PUT_ERROR(CONF, CONF_R_MISSING_EQUAL_SIGN); in def_load_bio()
678 OPENSSL_PUT_ERROR(CONF, ERR_R_MALLOC_FAILURE); in def_load_bio()
690 OPENSSL_PUT_ERROR(CONF, CONF_R_UNABLE_TO_CREATE_NEW_SECTION); in def_load_bio()
697 OPENSSL_PUT_ERROR(CONF, ERR_R_MALLOC_FAILURE); in def_load_bio()
738 int NCONF_load(CONF *conf, const char *filename, long *out_error_line) { in NCONF_load()
743 OPENSSL_PUT_ERROR(CONF, ERR_R_SYS_LIB); in NCONF_load()
753 int NCONF_load_bio(CONF *conf, BIO *bio, long *out_error_line) { in NCONF_load_bio()
764 OPENSSL_PUT_ERROR(CONF, CONF_R_LIST_CANNOT_BE_NULL); in CONF_parse_list()