/openssl-master/include/internal/ |
A D | dso.h | 57 typedef struct dso_st DSO; typedef 86 DSO *DSO_new(void); 87 int DSO_free(DSO *dso); 88 int DSO_flags(DSO *dso); 89 int DSO_up_ref(DSO *dso); 90 long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg); 96 const char *DSO_get_filename(DSO *dso); 97 int DSO_set_filename(DSO *dso, const char *filename); 108 char *DSO_convert_filename(DSO *dso, const char *filename); 124 DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags); [all …]
|
A D | provider.h | 74 const DSO *ossl_provider_dso(const OSSL_PROVIDER *prov);
|
/openssl-master/crypto/dso/ |
A D | dso_lib.c | 13 static DSO *DSO_new_method(DSO_METHOD *meth) in DSO_new_method() 15 DSO *ret; in DSO_new_method() 47 DSO *DSO_new(void) in DSO_new() 52 int DSO_free(DSO *dso) in DSO_free() 87 int DSO_flags(DSO *dso) in DSO_flags() 92 int DSO_up_ref(DSO *dso) in DSO_up_ref() 109 DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) in DSO_load() 111 DSO *ret; in DSO_load() 221 const char *DSO_get_filename(DSO *dso) in DSO_get_filename() 311 DSO *DSO_dsobyaddr(void *addr, int flags) in DSO_dsobyaddr() [all …]
|
A D | dso_local.h | 74 int (*dso_load) (DSO *dso); 76 int (*dso_unload) (DSO *dso); 84 DSO_FUNC_TYPE (*dso_bind_func) (DSO *dso, const char *symname); 89 long (*dso_ctrl) (DSO *dso, int cmd, long larg, void *parg); 101 int (*init) (DSO *dso); 102 int (*finish) (DSO *dso);
|
A D | dso_dl.c | 19 static int dl_load(DSO *dso); 20 static int dl_unload(DSO *dso); 21 static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname); 22 static char *dl_name_converter(DSO *dso, const char *filename); 23 static char *dl_merger(DSO *dso, const char *filespec1, 53 static int dl_load(DSO *dso) in dl_load() 99 static int dl_unload(DSO *dso) in dl_unload() 122 static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname) in dl_bind_func() 154 static char *dl_merger(DSO *dso, const char *filespec1, const char *filespec2) in dl_merger() 219 static char *dl_name_converter(DSO *dso, const char *filename) in dl_name_converter()
|
A D | dso_dlfcn.c | 41 static int dlfcn_load(DSO *dso); 42 static int dlfcn_unload(DSO *dso); 43 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname); 44 static char *dlfcn_name_converter(DSO *dso, const char *filename); 45 static char *dlfcn_merger(DSO *dso, const char *filespec1, 96 static int dlfcn_load(DSO *dso) in dlfcn_load() 142 static int dlfcn_unload(DSO *dso) in dlfcn_unload() 165 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname) in dlfcn_bind_func() 195 static char *dlfcn_merger(DSO *dso, const char *filespec1, in dlfcn_merger() 253 static char *dlfcn_name_converter(DSO *dso, const char *filename) in dlfcn_name_converter()
|
A D | dso_vms.c | 37 static int vms_load(DSO *dso); 38 static int vms_unload(DSO *dso); 39 static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname); 40 static char *vms_name_converter(DSO *dso, const char *filename); 41 static char *vms_merger(DSO *dso, const char *filespec1, 84 static int vms_load(DSO *dso) in vms_load() 223 static int vms_unload(DSO *dso) in vms_unload() 269 void vms_bind_sym(DSO *dso, const char *symname, void **sym) in vms_bind_sym() 354 static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname) in vms_bind_func() 361 static char *vms_merger(DSO *dso, const char *filespec1, in vms_merger() [all …]
|
A D | dso_win32.c | 61 static int win32_load(DSO *dso); 62 static int win32_unload(DSO *dso); 63 static DSO_FUNC_TYPE win32_bind_func(DSO *dso, const char *symname); 64 static char *win32_name_converter(DSO *dso, const char *filename); 65 static char *win32_merger(DSO *dso, const char *filespec1, 96 static int win32_load(DSO *dso) in win32_load() 134 static int win32_unload(DSO *dso) in win32_unload() 161 static DSO_FUNC_TYPE win32_bind_func(DSO *dso, const char *symname) in win32_bind_func() 203 static struct file_st *win32_splitter(DSO *dso, const char *filename, in win32_splitter() 389 static char *win32_merger(DSO *dso, const char *filespec1, in win32_merger() [all …]
|
/openssl-master/test/ |
A D | shlibloadtest.c | 18 typedef void DSO; typedef 29 typedef DSO * (*DSO_dsobyaddr_t)(void (*addr)(void), int flags); 30 typedef int (*DSO_free_t)(DSO *dso); 195 DSO *hndl; in test_lib()
|
/openssl-master/crypto/conf/ |
A D | conf_mod.c | 39 DSO *dso; 74 static CONF_MODULE *module_add(DSO *dso, const char *name, 255 DSO *dso = NULL; in module_load_dso() 293 static CONF_MODULE *module_add(DSO *dso, const char *name, in module_add()
|
/openssl-master/include/crypto/ |
A D | dso_conf.h.in | 15 {- # The DSO code currently always implements all functions so that no
|
/openssl-master/crypto/ |
A D | init.c | 148 DSO *dso; in DEFINE_RUN_ONCE_STATIC() 688 DSO *dso = NULL; in OPENSSL_atexit()
|
A D | provider_core.c | 150 DSO *module; 1413 const DSO *ossl_provider_dso(const OSSL_PROVIDER *prov) in ossl_provider_dso()
|
/openssl-master/doc/man1/ |
A D | openssl-info.pod.in | 53 Outputs the DSO extension OpenSSL uses.
|
/openssl-master/include/openssl/ |
A D | conf.h.in | 62 /* DSO module function typedefs */
|
/openssl-master/crypto/engine/ |
A D | eng_dyn.c | 83 DSO *dynamic_dso;
|
A D | README.md | 56 for cleanup, modularity, and DSO support - yet EVP_CIPHERs, as exposed to
|
/openssl-master/crypto/err/ |
A D | openssl.ec | 26 L DSO NONE crypto/dso/dso_err.c include/int…
|
A D | openssl.txt | 608 ENGINE_R_DSO_FAILURE:104:DSO failure
|
/openssl-master/crypto/comp/ |
A D | c_zlib.c | 106 static DSO *zlib_dso = NULL;
|
/openssl-master/util/ |
A D | indent.pro | 185 -T DSO
|
/openssl-master/doc/internal/man3/ |
A D | ossl_provider_new.pod | 73 const DSO *ossl_provider_dso(OSSL_PROVIDER *prov);
|
/openssl-master/ |
A D | README-ENGINES.md | 315 -engine cswift" generated errors. If the DSO gets enabled, an attempt is made
|
A D | INSTALL.md | 647 Don't build support for loading Dynamic Shared Objects (DSO) 1065 LDFLAGS Flags for the shared library, DSO and
|
/openssl-master/Configurations/ |
A D | README.md | 322 when building library, DSO or program modules specifically.
|