Lines Matching refs:const
66 typedef int conf_init_func (CONF_IMODULE *md, const CONF *cnf);
78 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file,
87 const char *section);
88 char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf, const char *group,
89 const char *name);
90 long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group,
91 const char *name);
98 OSSL_DEPRECATEDIN_1_1_0 void OPENSSL_config(const char *config_name);
112 OSSL_LIB_CTX *NCONF_get0_libctx(const CONF *conf);
121 int NCONF_load(CONF *conf, const char *file, long *eline);
126 STACK_OF(OPENSSL_CSTRING) *NCONF_get_section_names(const CONF *conf);
127 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf,
128 const char *section);
129 char *NCONF_get_string(const CONF *conf, const char *group, const char *name);
130 int NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
133 int NCONF_dump_fp(const CONF *conf, FILE *out);
135 int NCONF_dump_bio(const CONF *conf, BIO *out);
141 int CONF_modules_load(const CONF *cnf, const char *appname,
143 int CONF_modules_load_file_ex(OSSL_LIB_CTX *libctx, const char *filename,
144 const char *appname, unsigned long flags);
145 int CONF_modules_load_file(const char *filename, const char *appname,
152 int CONF_module_add(const char *name, conf_init_func *ifunc,
155 const char *CONF_imodule_get_name(const CONF_IMODULE *md);
156 const char *CONF_imodule_get_value(const CONF_IMODULE *md);
157 void *CONF_imodule_get_usr_data(const CONF_IMODULE *md);
159 CONF_MODULE *CONF_imodule_get_module(const CONF_IMODULE *md);
160 unsigned long CONF_imodule_get_flags(const CONF_IMODULE *md);
167 int CONF_parse_list(const char *list, int sep, int nospc,
168 int (*list_cb) (const char *elem, int len, void *usr),