Symbol: CONF_MODULE
crypto/libressl/crypto/conf/conf_mod.c
106
static STACK_OF(CONF_MODULE) *supported_modules = NULL;
crypto/libressl/crypto/conf/conf_mod.c
109
static void module_free(CONF_MODULE *md);
crypto/libressl/crypto/conf/conf_mod.c
113
static CONF_MODULE *module_add(DSO *dso, const char *name,
crypto/libressl/crypto/conf/conf_mod.c
115
static CONF_MODULE *module_find(char *name);
crypto/libressl/crypto/conf/conf_mod.c
116
static int module_init(CONF_MODULE *pmod, char *name, char *value,
crypto/libressl/crypto/conf/conf_mod.c
118
static CONF_MODULE *module_load_dso(const CONF *cnf, char *name, char *value,
crypto/libressl/crypto/conf/conf_mod.c
203
CONF_MODULE *md;
crypto/libressl/crypto/conf/conf_mod.c
235
static CONF_MODULE *
crypto/libressl/crypto/conf/conf_mod.c
243
CONF_MODULE *md;
crypto/libressl/crypto/conf/conf_mod.c
279
static CONF_MODULE *
crypto/libressl/crypto/conf/conf_mod.c
283
CONF_MODULE *tmod = NULL;
crypto/libressl/crypto/conf/conf_mod.c
291
tmod = malloc(sizeof(CONF_MODULE));
crypto/libressl/crypto/conf/conf_mod.c
314
static CONF_MODULE *
crypto/libressl/crypto/conf/conf_mod.c
317
CONF_MODULE *tmod;
crypto/libressl/crypto/conf/conf_mod.c
339
module_init(CONF_MODULE *pmod, char *name, char *value, const CONF *cnf)
crypto/libressl/crypto/conf/conf_mod.c
408
CONF_MODULE *md;
crypto/libressl/crypto/conf/conf_mod.c
430
module_free(CONF_MODULE *md)
crypto/libressl/crypto/conf/conf_mod.c
511
CONF_MODULE *
crypto/libressl/crypto/conf/conf_mod.c
530
CONF_module_get_usr_data(CONF_MODULE *pmod)
crypto/libressl/crypto/conf/conf_mod.c
536
CONF_module_set_usr_data(CONF_MODULE *pmod, void *usr_data)
crypto/libressl/crypto/conf/conf_mod.c
99
CONF_MODULE *pmod;
crypto/libressl/include/openssl/conf.h
106
DECLARE_STACK_OF(CONF_MODULE)
crypto/libressl/include/openssl/conf.h
183
CONF_MODULE *CONF_imodule_get_module(const CONF_IMODULE *md);
crypto/libressl/include/openssl/conf.h
186
void *CONF_module_get_usr_data(CONF_MODULE *pmod);
crypto/libressl/include/openssl/conf.h
187
void CONF_module_set_usr_data(CONF_MODULE *pmod, void *usr_data);
crypto/libressl/include/openssl/safestack.h
578
#define sk_CONF_MODULE_new(cmp) SKM_sk_new(CONF_MODULE, (cmp))
crypto/libressl/include/openssl/safestack.h
579
#define sk_CONF_MODULE_new_null() SKM_sk_new_null(CONF_MODULE)
crypto/libressl/include/openssl/safestack.h
580
#define sk_CONF_MODULE_free(st) SKM_sk_free(CONF_MODULE, (st))
crypto/libressl/include/openssl/safestack.h
581
#define sk_CONF_MODULE_num(st) SKM_sk_num(CONF_MODULE, (st))
crypto/libressl/include/openssl/safestack.h
582
#define sk_CONF_MODULE_value(st, i) SKM_sk_value(CONF_MODULE, (st), (i))
crypto/libressl/include/openssl/safestack.h
583
#define sk_CONF_MODULE_set(st, i, val) SKM_sk_set(CONF_MODULE, (st), (i), (val))
crypto/libressl/include/openssl/safestack.h
584
#define sk_CONF_MODULE_zero(st) SKM_sk_zero(CONF_MODULE, (st))
crypto/libressl/include/openssl/safestack.h
585
#define sk_CONF_MODULE_push(st, val) SKM_sk_push(CONF_MODULE, (st), (val))
crypto/libressl/include/openssl/safestack.h
586
#define sk_CONF_MODULE_unshift(st, val) SKM_sk_unshift(CONF_MODULE, (st), (val))
crypto/libressl/include/openssl/safestack.h
587
#define sk_CONF_MODULE_find(st, val) SKM_sk_find(CONF_MODULE, (st), (val))
crypto/libressl/include/openssl/safestack.h
588
#define sk_CONF_MODULE_find_ex(st, val) SKM_sk_find_ex(CONF_MODULE, (st), (val))
crypto/libressl/include/openssl/safestack.h
589
#define sk_CONF_MODULE_delete(st, i) SKM_sk_delete(CONF_MODULE, (st), (i))
crypto/libressl/include/openssl/safestack.h
590
#define sk_CONF_MODULE_delete_ptr(st, ptr) SKM_sk_delete_ptr(CONF_MODULE, (st), (ptr))
crypto/libressl/include/openssl/safestack.h
591
#define sk_CONF_MODULE_insert(st, val, i) SKM_sk_insert(CONF_MODULE, (st), (val), (i))
crypto/libressl/include/openssl/safestack.h
592
#define sk_CONF_MODULE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CONF_MODULE, (st), (cmp))
crypto/libressl/include/openssl/safestack.h
593
#define sk_CONF_MODULE_dup(st) SKM_sk_dup(CONF_MODULE, st)
crypto/libressl/include/openssl/safestack.h
594
#define sk_CONF_MODULE_pop_free(st, free_func) SKM_sk_pop_free(CONF_MODULE, (st), (free_func))
crypto/libressl/include/openssl/safestack.h
595
#define sk_CONF_MODULE_shift(st) SKM_sk_shift(CONF_MODULE, (st))
crypto/libressl/include/openssl/safestack.h
596
#define sk_CONF_MODULE_pop(st) SKM_sk_pop(CONF_MODULE, (st))
crypto/libressl/include/openssl/safestack.h
597
#define sk_CONF_MODULE_sort(st) SKM_sk_sort(CONF_MODULE, (st))
crypto/libressl/include/openssl/safestack.h
598
#define sk_CONF_MODULE_is_sorted(st) SKM_sk_is_sorted(CONF_MODULE, (st))