Symbol: DSO
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
238
DSO *dso = NULL;
crypto/libressl/crypto/conf/conf_mod.c
280
module_add(DSO *dso, const char *name, conf_init_func *ifunc,
crypto/libressl/crypto/conf/conf_mod.c
80
DSO *dso;
crypto/libressl/crypto/dso/dso_lib.c
102
DSO *
crypto/libressl/crypto/dso/dso_lib.c
105
DSO *ret;
crypto/libressl/crypto/dso/dso_lib.c
112
ret = calloc(1, sizeof(DSO));
crypto/libressl/crypto/dso/dso_lib.c
137
DSO_free(DSO *dso)
crypto/libressl/crypto/dso/dso_lib.c
168
DSO_flags(DSO *dso)
crypto/libressl/crypto/dso/dso_lib.c
175
DSO_up_ref(DSO *dso)
crypto/libressl/crypto/dso/dso_lib.c
188
DSO *
crypto/libressl/crypto/dso/dso_lib.c
189
DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags)
crypto/libressl/crypto/dso/dso_lib.c
191
DSO *ret;
crypto/libressl/crypto/dso/dso_lib.c
243
DSO_bind_var(DSO *dso, const char *symname)
crypto/libressl/crypto/dso/dso_lib.c
264
DSO_bind_func(DSO *dso, const char *symname)
crypto/libressl/crypto/dso/dso_lib.c
293
DSO_ctrl(DSO *dso, int cmd, long larg, void *parg)
crypto/libressl/crypto/dso/dso_lib.c
322
DSO_set_name_converter(DSO *dso, DSO_NAME_CONVERTER_FUNC cb,
crypto/libressl/crypto/dso/dso_lib.c
336
DSO_get_filename(DSO *dso)
crypto/libressl/crypto/dso/dso_lib.c
346
DSO_set_filename(DSO *dso, const char *filename)
crypto/libressl/crypto/dso/dso_lib.c
370
DSO_merge(DSO *dso, const char *filespec1, const char *filespec2)
crypto/libressl/crypto/dso/dso_lib.c
389
DSO_convert_filename(DSO *dso, const char *filename)
crypto/libressl/crypto/dso/dso_lib.c
420
DSO_get_loaded_filename(DSO *dso)
crypto/libressl/crypto/dso/dso_lib.c
68
DSO *
crypto/libressl/crypto/dso/dso_lib.c
87
DSO_get_method(DSO *dso)
crypto/libressl/crypto/dso/dso_lib.c
93
DSO_set_method(DSO *dso, DSO_METHOD *meth)
crypto/libressl/include/openssl/dso.h
116
typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *);
crypto/libressl/include/openssl/dso.h
132
typedef char* (*DSO_MERGER_FUNC)(DSO *, const char *, const char *);
crypto/libressl/include/openssl/dso.h
139
int (*dso_load)(DSO *dso);
crypto/libressl/include/openssl/dso.h
141
int (*dso_unload)(DSO *dso);
crypto/libressl/include/openssl/dso.h
143
void *(*dso_bind_var)(DSO *dso, const char *symname);
crypto/libressl/include/openssl/dso.h
150
DSO_FUNC_TYPE (*dso_bind_func)(DSO *dso, const char *symname);
crypto/libressl/include/openssl/dso.h
154
long (*dso_ctrl)(DSO *dso, int cmd, long larg, void *parg);
crypto/libressl/include/openssl/dso.h
163
int (*init)(DSO *dso);
crypto/libressl/include/openssl/dso.h
164
int (*finish)(DSO *dso);
crypto/libressl/include/openssl/dso.h
212
DSO * DSO_new(void);
crypto/libressl/include/openssl/dso.h
213
DSO * DSO_new_method(DSO_METHOD *method);
crypto/libressl/include/openssl/dso.h
214
int DSO_free(DSO *dso);
crypto/libressl/include/openssl/dso.h
215
int DSO_flags(DSO *dso);
crypto/libressl/include/openssl/dso.h
216
int DSO_up_ref(DSO *dso);
crypto/libressl/include/openssl/dso.h
217
long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg);
crypto/libressl/include/openssl/dso.h
223
int DSO_set_name_converter(DSO *dso, DSO_NAME_CONVERTER_FUNC cb,
crypto/libressl/include/openssl/dso.h
227
const char *DSO_get_filename(DSO *dso);
crypto/libressl/include/openssl/dso.h
228
int DSO_set_filename(DSO *dso, const char *filename);
crypto/libressl/include/openssl/dso.h
237
char *DSO_convert_filename(DSO *dso, const char *filename);
crypto/libressl/include/openssl/dso.h
242
char *DSO_merge(DSO *dso, const char *filespec1, const char *filespec2);
crypto/libressl/include/openssl/dso.h
250
const char *DSO_get_loaded_filename(DSO *dso);
crypto/libressl/include/openssl/dso.h
254
DSO_METHOD *DSO_get_method(DSO *dso);
crypto/libressl/include/openssl/dso.h
255
DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth);
crypto/libressl/include/openssl/dso.h
262
DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags);
crypto/libressl/include/openssl/dso.h
265
void *DSO_bind_var(DSO *dso, const char *symname);
crypto/libressl/include/openssl/dso.h
268
DSO_FUNC_TYPE DSO_bind_func(DSO *dso, const char *symname);