Home
last modified time | relevance | path

Searched refs:DSO (Results 1 – 25 of 28) sorted by relevance

12

/openssl/include/internal/
H A Ddso.h57 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 …]
H A Dprovider.h74 const DSO *ossl_provider_dso(const OSSL_PROVIDER *prov);
/openssl/crypto/dso/
H A Ddso_lib.c13 static DSO *DSO_new_method(DSO_METHOD *meth) in DSO_new_method()
15 DSO *ret; in DSO_new_method()
42 DSO *DSO_new(void) in DSO_new()
47 int DSO_free(DSO *dso) in DSO_free()
82 int DSO_flags(DSO *dso) in DSO_flags()
87 int DSO_up_ref(DSO *dso) in DSO_up_ref()
104 DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) in DSO_load()
106 DSO *ret; in DSO_load()
216 const char *DSO_get_filename(DSO *dso) in DSO_get_filename()
302 DSO *DSO_dsobyaddr(void *addr, int flags) in DSO_dsobyaddr()
[all …]
H A Ddso_local.h73 int (*dso_load) (DSO *dso);
75 int (*dso_unload) (DSO *dso);
83 DSO_FUNC_TYPE (*dso_bind_func) (DSO *dso, const char *symname);
88 long (*dso_ctrl) (DSO *dso, int cmd, long larg, void *parg);
100 int (*init) (DSO *dso);
101 int (*finish) (DSO *dso);
H A Ddso_dl.c19 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()
213 static char *dl_name_converter(DSO *dso, const char *filename) in dl_name_converter()
H A Ddso_dlfcn.c41 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()
247 static char *dlfcn_name_converter(DSO *dso, const char *filename) in dlfcn_name_converter()
H A Ddso_vms.c50 static int vms_load(DSO *dso);
51 static int vms_unload(DSO *dso);
52 static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname);
53 static char *vms_name_converter(DSO *dso, const char *filename);
54 static char *vms_merger(DSO *dso, const char *filespec1,
97 static int vms_load(DSO *dso) in vms_load()
237 static int vms_unload(DSO *dso) in vms_unload()
283 void vms_bind_sym(DSO *dso, const char *symname, void **sym) in vms_bind_sym()
368 static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname) in vms_bind_func()
375 static char *vms_merger(DSO *dso, const char *filespec1, in vms_merger()
[all …]
H A Ddso_win32.c61 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()
132 static int win32_unload(DSO *dso) in win32_unload()
159 static DSO_FUNC_TYPE win32_bind_func(DSO *dso, const char *symname) in win32_bind_func()
201 static struct file_st *win32_splitter(DSO *dso, const char *filename, in win32_splitter()
383 static char *win32_merger(DSO *dso, const char *filespec1, in win32_merger()
[all …]
/openssl/test/
H A Dshlibloadtest.c18 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/crypto/conf/
H A Dconf_mod.c40 DSO *dso;
77 static CONF_MODULE *module_add(DSO *dso, const char *name,
300 DSO *dso = NULL; in module_load_dso()
338 static CONF_MODULE *module_add(DSO *dso, const char *name, in module_add()
/openssl/include/crypto/
H A Ddso_conf.h.in15 {- # The DSO code currently always implements all functions so that no
/openssl/crypto/
H A Dinit.c158 DSO *dso; in DEFINE_RUN_ONCE_STATIC()
702 DSO *dso = NULL; in OPENSSL_atexit()
H A Dprovider_core.c156 DSO *module;
1570 const DSO *ossl_provider_dso(const OSSL_PROVIDER *prov) in ossl_provider_dso()
/openssl/doc/man1/
H A Dopenssl-info.pod.in53 Outputs the DSO extension OpenSSL uses.
/openssl/include/openssl/
H A Dconf.h.in65 /* DSO module function typedefs */
/openssl/crypto/engine/
H A Deng_dyn.c83 DSO *dynamic_dso;
H A DREADME.md56 for cleanup, modularity, and DSO support - yet EVP_CIPHERs, as exposed to
/openssl/crypto/comp/
H A Dc_brotli.c87 static DSO *brotli_encode_dso = NULL;
88 static DSO *brotli_decode_dso = NULL;
H A Dc_zlib.c100 static DSO *zlib_dso = NULL;
H A Dc_zstd.c113 static DSO *zstd_dso = NULL;
/openssl/crypto/err/
H A Dopenssl.ec26 L DSO NONE crypto/dso/dso_err.c include/int…
/openssl/util/
H A Dindent.pro185 -T DSO
/openssl/doc/internal/man3/
H A Dossl_provider_new.pod73 const DSO *ossl_provider_dso(OSSL_PROVIDER *prov);
/openssl/
H A DREADME-ENGINES.md316 -engine cswift" generated errors. If the DSO gets enabled, an attempt is made
/openssl/Configurations/
H A DREADME.md335 when building library, DSO or program modules specifically.

Completed in 54 milliseconds

12