Lines Matching refs:CONF

24 /* Init a 'CONF' structure from an old LHASH */
26 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash)
36 * The following section contains the "CONF classic" functions, rewritten in
37 * terms of the new CONF interface.
87 CONF ctmp;
104 CONF ctmp;
117 CONF ctmp;
134 CONF ctmp;
145 CONF ctmp;
168 CONF ctmp;
175 * The following section contains the "New CONF" functions. They are
176 * completely centralised around a new CONF structure that may contain
179 * the "CONF classic" functions, for consistency.
182 CONF *NCONF_new_ex(OSSL_LIB_CTX *libctx, CONF_METHOD *meth)
184 CONF *ret;
199 CONF *NCONF_new(CONF_METHOD *meth)
204 void NCONF_free(CONF *conf)
211 void NCONF_free_data(CONF *conf)
218 OSSL_LIB_CTX *NCONF_get0_libctx(const CONF *conf)
239 STACK_OF(OPENSSL_CSTRING) *NCONF_get_section_names(const CONF *cnf)
250 int NCONF_load(CONF *conf, const char *file, long *eline)
261 int NCONF_load_fp(CONF *conf, FILE *fp, long *eline)
275 int NCONF_load_bio(CONF *conf, BIO *bp, long *eline)
285 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section)
300 char *NCONF_get_string(const CONF *conf, const char *group, const char *name)
320 static int default_is_number(const CONF *conf, char c)
325 static int default_to_int(const CONF *conf, char c)
330 int NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
335 int (*is_number)(const CONF *, char) = &default_is_number;
336 int (*to_int)(const CONF *, char) = &default_to_int;
368 long _CONF_get_number(const CONF *conf, const char *section,
381 int NCONF_dump_fp(const CONF *conf, FILE *out)
395 int NCONF_dump_bio(const CONF *conf, BIO *out)