Symbol: CONF_IMODULE
crypto/openssl/crypto/asn1/asn_moid.c
23
static int oid_module_init(CONF_IMODULE *md, const CONF *cnf)
crypto/openssl/crypto/asn1/asn_moid.c
45
static void oid_module_finish(CONF_IMODULE *md)
crypto/openssl/crypto/asn1/asn_mstbl.c
20
static int stbl_module_init(CONF_IMODULE *md, const CONF *cnf)
crypto/openssl/crypto/asn1/asn_mstbl.c
42
static void stbl_module_finish(CONF_IMODULE *md)
crypto/openssl/crypto/conf/conf_mod.c
28
DEFINE_STACK_OF(CONF_IMODULE)
crypto/openssl/crypto/conf/conf_mod.c
432
CONF_IMODULE *imod = NULL;
crypto/openssl/crypto/conf/conf_mod.c
433
STACK_OF(CONF_IMODULE) *old_modules;
crypto/openssl/crypto/conf/conf_mod.c
434
STACK_OF(CONF_IMODULE) *new_modules;
crypto/openssl/crypto/conf/conf_mod.c
571
CONF_IMODULE *imod;
crypto/openssl/crypto/conf/conf_mod.c
572
STACK_OF(CONF_IMODULE) *old_modules;
crypto/openssl/crypto/conf/conf_mod.c
573
STACK_OF(CONF_IMODULE) *new_modules = NULL;
crypto/openssl/crypto/conf/conf_mod.c
604
static void module_finish(CONF_IMODULE *imod)
crypto/openssl/crypto/conf/conf_mod.c
635
const char *CONF_imodule_get_name(const CONF_IMODULE *md)
crypto/openssl/crypto/conf/conf_mod.c
640
const char *CONF_imodule_get_value(const CONF_IMODULE *md)
crypto/openssl/crypto/conf/conf_mod.c
645
void *CONF_imodule_get_usr_data(const CONF_IMODULE *md)
crypto/openssl/crypto/conf/conf_mod.c
650
void CONF_imodule_set_usr_data(CONF_IMODULE *md, void *usr_data)
crypto/openssl/crypto/conf/conf_mod.c
655
CONF_MODULE *CONF_imodule_get_module(const CONF_IMODULE *md)
crypto/openssl/crypto/conf/conf_mod.c
660
unsigned long CONF_imodule_get_flags(const CONF_IMODULE *md)
crypto/openssl/crypto/conf/conf_mod.c
665
void CONF_imodule_set_flags(CONF_IMODULE *md, unsigned long flags)
crypto/openssl/crypto/conf/conf_mod.c
69
static STACK_OF(CONF_IMODULE) *initialized_modules = NULL; /* protected by lock */
crypto/openssl/crypto/conf/conf_mod.c
74
static void module_finish(CONF_IMODULE *imod);
crypto/openssl/crypto/conf/conf_ssl.c
41
static void ssl_module_free(CONF_IMODULE *md)
crypto/openssl/crypto/conf/conf_ssl.c
61
static int ssl_module_init(CONF_IMODULE *md, const CONF *cnf)
crypto/openssl/crypto/engine/eng_cnf.c
146
static int int_engine_module_init(CONF_IMODULE *md, const CONF *cnf)
crypto/openssl/crypto/engine/eng_cnf.c
170
static void int_engine_module_finish(CONF_IMODULE *md)
crypto/openssl/crypto/evp/evp_cnf.c
21
static int alg_module_init(CONF_IMODULE *md, const CONF *cnf)
crypto/openssl/crypto/provider_conf.c
399
static int provider_conf_init(CONF_IMODULE *md, const CONF *cnf)
crypto/openssl/crypto/rand/rand_lib.c
1056
static void random_conf_deinit(CONF_IMODULE *md)
crypto/openssl/crypto/rand/rand_lib.c
980
static int random_conf_init(CONF_IMODULE *md, const CONF *cnf)
crypto/openssl/include/openssl/conf.h
104
STACK_OF(CONF_IMODULE);
crypto/openssl/include/openssl/conf.h
107
typedef int conf_init_func(CONF_IMODULE *md, const CONF *cnf);
crypto/openssl/include/openssl/conf.h
108
typedef void conf_finish_func(CONF_IMODULE *md);
crypto/openssl/include/openssl/conf.h
198
const char *CONF_imodule_get_name(const CONF_IMODULE *md);
crypto/openssl/include/openssl/conf.h
199
const char *CONF_imodule_get_value(const CONF_IMODULE *md);
crypto/openssl/include/openssl/conf.h
200
void *CONF_imodule_get_usr_data(const CONF_IMODULE *md);
crypto/openssl/include/openssl/conf.h
201
void CONF_imodule_set_usr_data(CONF_IMODULE *md, void *usr_data);
crypto/openssl/include/openssl/conf.h
202
CONF_MODULE *CONF_imodule_get_module(const CONF_IMODULE *md);
crypto/openssl/include/openssl/conf.h
203
unsigned long CONF_imodule_get_flags(const CONF_IMODULE *md);
crypto/openssl/include/openssl/conf.h
204
void CONF_imodule_set_flags(CONF_IMODULE *md, unsigned long flags);