Symbol: CONF_IMODULE
crypto/libressl/crypto/asn1/asn_moid.c
75
oid_module_init(CONF_IMODULE *md, const CONF *cnf)
crypto/libressl/crypto/asn1/asn_moid.c
98
oid_module_finish(CONF_IMODULE *md)
crypto/libressl/crypto/conf/conf_mod.c
107
static STACK_OF(CONF_IMODULE) *initialized_modules = NULL;
crypto/libressl/crypto/conf/conf_mod.c
110
static void module_finish(CONF_IMODULE *imod);
crypto/libressl/crypto/conf/conf_mod.c
343
CONF_IMODULE *imod = NULL;
crypto/libressl/crypto/conf/conf_mod.c
346
imod = malloc(sizeof(CONF_IMODULE));
crypto/libressl/crypto/conf/conf_mod.c
443
CONF_IMODULE *imod;
crypto/libressl/crypto/conf/conf_mod.c
456
module_finish(CONF_IMODULE *imod)
crypto/libressl/crypto/conf/conf_mod.c
488
CONF_imodule_get_name(const CONF_IMODULE *md)
crypto/libressl/crypto/conf/conf_mod.c
494
CONF_imodule_get_value(const CONF_IMODULE *md)
crypto/libressl/crypto/conf/conf_mod.c
500
CONF_imodule_get_usr_data(const CONF_IMODULE *md)
crypto/libressl/crypto/conf/conf_mod.c
506
CONF_imodule_set_usr_data(CONF_IMODULE *md, void *usr_data)
crypto/libressl/crypto/conf/conf_mod.c
512
CONF_imodule_get_module(const CONF_IMODULE *md)
crypto/libressl/crypto/conf/conf_mod.c
518
CONF_imodule_get_flags(const CONF_IMODULE *md)
crypto/libressl/crypto/conf/conf_mod.c
524
CONF_imodule_set_flags(CONF_IMODULE *md, unsigned long flags)
crypto/libressl/crypto/engine/eng_cnf.c
209
int_engine_module_init(CONF_IMODULE *md, const CONF *cnf)
crypto/libressl/crypto/engine/eng_cnf.c
237
int_engine_module_finish(CONF_IMODULE *md)
crypto/libressl/include/openssl/conf.h
107
DECLARE_STACK_OF(CONF_IMODULE)
crypto/libressl/include/openssl/conf.h
110
typedef int conf_init_func(CONF_IMODULE *md, const CONF *cnf);
crypto/libressl/include/openssl/conf.h
111
typedef void conf_finish_func(CONF_IMODULE *md);
crypto/libressl/include/openssl/conf.h
179
const char *CONF_imodule_get_name(const CONF_IMODULE *md);
crypto/libressl/include/openssl/conf.h
180
const char *CONF_imodule_get_value(const CONF_IMODULE *md);
crypto/libressl/include/openssl/conf.h
181
void *CONF_imodule_get_usr_data(const CONF_IMODULE *md);
crypto/libressl/include/openssl/conf.h
182
void CONF_imodule_set_usr_data(CONF_IMODULE *md, void *usr_data);
crypto/libressl/include/openssl/conf.h
183
CONF_MODULE *CONF_imodule_get_module(const CONF_IMODULE *md);
crypto/libressl/include/openssl/conf.h
184
unsigned long CONF_imodule_get_flags(const CONF_IMODULE *md);
crypto/libressl/include/openssl/conf.h
185
void CONF_imodule_set_flags(CONF_IMODULE *md, unsigned long flags);
crypto/libressl/include/openssl/safestack.h
556
#define sk_CONF_IMODULE_new(cmp) SKM_sk_new(CONF_IMODULE, (cmp))
crypto/libressl/include/openssl/safestack.h
557
#define sk_CONF_IMODULE_new_null() SKM_sk_new_null(CONF_IMODULE)
crypto/libressl/include/openssl/safestack.h
558
#define sk_CONF_IMODULE_free(st) SKM_sk_free(CONF_IMODULE, (st))
crypto/libressl/include/openssl/safestack.h
559
#define sk_CONF_IMODULE_num(st) SKM_sk_num(CONF_IMODULE, (st))
crypto/libressl/include/openssl/safestack.h
560
#define sk_CONF_IMODULE_value(st, i) SKM_sk_value(CONF_IMODULE, (st), (i))
crypto/libressl/include/openssl/safestack.h
561
#define sk_CONF_IMODULE_set(st, i, val) SKM_sk_set(CONF_IMODULE, (st), (i), (val))
crypto/libressl/include/openssl/safestack.h
562
#define sk_CONF_IMODULE_zero(st) SKM_sk_zero(CONF_IMODULE, (st))
crypto/libressl/include/openssl/safestack.h
563
#define sk_CONF_IMODULE_push(st, val) SKM_sk_push(CONF_IMODULE, (st), (val))
crypto/libressl/include/openssl/safestack.h
564
#define sk_CONF_IMODULE_unshift(st, val) SKM_sk_unshift(CONF_IMODULE, (st), (val))
crypto/libressl/include/openssl/safestack.h
565
#define sk_CONF_IMODULE_find(st, val) SKM_sk_find(CONF_IMODULE, (st), (val))
crypto/libressl/include/openssl/safestack.h
566
#define sk_CONF_IMODULE_find_ex(st, val) SKM_sk_find_ex(CONF_IMODULE, (st), (val))
crypto/libressl/include/openssl/safestack.h
567
#define sk_CONF_IMODULE_delete(st, i) SKM_sk_delete(CONF_IMODULE, (st), (i))
crypto/libressl/include/openssl/safestack.h
568
#define sk_CONF_IMODULE_delete_ptr(st, ptr) SKM_sk_delete_ptr(CONF_IMODULE, (st), (ptr))
crypto/libressl/include/openssl/safestack.h
569
#define sk_CONF_IMODULE_insert(st, val, i) SKM_sk_insert(CONF_IMODULE, (st), (val), (i))
crypto/libressl/include/openssl/safestack.h
570
#define sk_CONF_IMODULE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CONF_IMODULE, (st), (cmp))
crypto/libressl/include/openssl/safestack.h
571
#define sk_CONF_IMODULE_dup(st) SKM_sk_dup(CONF_IMODULE, st)
crypto/libressl/include/openssl/safestack.h
572
#define sk_CONF_IMODULE_pop_free(st, free_func) SKM_sk_pop_free(CONF_IMODULE, (st), (free_func))
crypto/libressl/include/openssl/safestack.h
573
#define sk_CONF_IMODULE_shift(st) SKM_sk_shift(CONF_IMODULE, (st))
crypto/libressl/include/openssl/safestack.h
574
#define sk_CONF_IMODULE_pop(st) SKM_sk_pop(CONF_IMODULE, (st))
crypto/libressl/include/openssl/safestack.h
575
#define sk_CONF_IMODULE_sort(st) SKM_sk_sort(CONF_IMODULE, (st))
crypto/libressl/include/openssl/safestack.h
576
#define sk_CONF_IMODULE_is_sorted(st) SKM_sk_is_sorted(CONF_IMODULE, (st))