Searched refs:dso (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-9.3-release/lib/libc/stdlib/
H A Datexit.h36 void __cxa_finalize(void *dso);
H A Datexit.c134 * with given dso handle is unloaded dynamically.
137 __cxa_atexit(void (*func)(void *), void *arg, void *dso) argument
145 fn.fn_dso = dso;
158 * object owning 'dso'. Note: if 'dso' is NULL, then all remaining
162 __cxa_finalize(void *dso) argument
169 if (dso != NULL) {
170 has_phdr = _rtld_addr_phdr(dso, &phdr_info);
182 if (dso != NULL && dso !
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/dso/
H A Ddso_lib.c63 #include <openssl/dso.h>
82 DSO_METHOD *DSO_get_method(DSO *dso) argument
84 return (dso->meth);
87 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth) argument
90 mtmp = dso->meth;
91 dso->meth = meth;
131 int DSO_free(DSO *dso) argument
135 if (dso == NULL) {
140 i = CRYPTO_add(&dso->references, -1, CRYPTO_LOCK_DSO);
142 REF_PRINT("DSO", dso);
173 DSO_flags(DSO *dso) argument
178 DSO_up_ref(DSO *dso) argument
189 DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) argument
243 DSO_bind_var(DSO *dso, const char *symname) argument
263 DSO_bind_func(DSO *dso, const char *symname) argument
292 DSO_ctrl(DSO *dso, int cmd, long larg, void *parg) argument
321 DSO_set_name_converter(DSO *dso, DSO_NAME_CONVERTER_FUNC cb, DSO_NAME_CONVERTER_FUNC *oldcb) argument
334 DSO_get_filename(DSO *dso) argument
343 DSO_set_filename(DSO *dso, const char *filename) argument
368 DSO_merge(DSO *dso, const char *filespec1, const char *filespec2) argument
391 DSO_convert_filename(DSO *dso, const char *filename) argument
422 DSO_get_loaded_filename(DSO *dso) argument
[all...]
H A Ddso.h0 /* dso.h -*- mode:C; c-file-style: "eay" -*- */
147 int (*dso_load) (DSO *dso);
149 int (*dso_unload) (DSO *dso);
151 void *(*dso_bind_var) (DSO *dso, const char *symname);
159 DSO_FUNC_TYPE (*dso_bind_func) (DSO *dso, const char *symname);
163 int (*dso_unbind_var) (DSO *dso, char *symname, void *symptr);
165 int (*dso_unbind_func) (DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
171 long (*dso_ctrl) (DSO *dso, int cmd, long larg, void *parg);
183 int (*init) (DSO *dso);
184 int (*finish) (DSO *dso);
[all...]
H A Ddso_dl.c62 #include <openssl/dso.h>
76 static int dl_load(DSO *dso);
77 static int dl_unload(DSO *dso);
78 static void *dl_bind_var(DSO *dso, const char *symname);
79 static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname);
81 static int dl_unbind_var(DSO *dso, char *symname, void *symptr);
82 static int dl_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
83 static int dl_init(DSO *dso);
84 static int dl_finish(DSO *dso);
85 static int dl_ctrl(DSO *dso, in
120 dl_load(DSO *dso) argument
161 dl_unload(DSO *dso) argument
184 dl_bind_var(DSO *dso, const char *symname) argument
210 dl_bind_func(DSO *dso, const char *symname) argument
236 dl_merger(DSO *dso, const char *filespec1, const char *filespec2) argument
308 dl_name_converter(DSO *dso, const char *filename) argument
[all...]
H A Ddso_dlfcn.c62 #include <openssl/dso.h>
78 static int dlfcn_load(DSO *dso);
79 static int dlfcn_unload(DSO *dso);
80 static void *dlfcn_bind_var(DSO *dso, const char *symname);
81 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname);
83 static int dlfcn_unbind(DSO *dso, char *symname, void *symptr);
84 static int dlfcn_init(DSO *dso);
85 static int dlfcn_finish(DSO *dso);
86 static long dlfcn_ctrl(DSO *dso, int cmd, long larg, void *parg);
88 static char *dlfcn_name_converter(DSO *dso, cons
146 dlfcn_load(DSO *dso) argument
183 dlfcn_unload(DSO *dso) argument
206 dlfcn_bind_var(DSO *dso, const char *symname) argument
232 dlfcn_bind_func(DSO *dso, const char *symname) argument
262 dlfcn_merger(DSO *dso, const char *filespec1, const char *filespec2) argument
331 dlfcn_name_converter(DSO *dso, const char *filename) argument
[all...]
H A Ddso_null.c67 #include <openssl/dso.h>
H A Ddso_openssl.c62 #include <openssl/dso.h>
H A DMakefile2 # OpenSSL/crypto/dso/Makefile
5 DIR= dso
27 EXHEADER= dso.h
81 dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
89 dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
96 dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
104 dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
112 dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
120 dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
129 dso_vms.o: ../../include/openssl/dso
[all...]
H A Ddso_err.c1 /* crypto/dso/dso_err.c */
64 #include <openssl/dso.h>
115 {ERR_REASON(DSO_R_DSO_ALREADY_LOADED), "dso already loaded"},
/freebsd-9.3-release/crypto/openssl/crypto/conf/
H A Dconf_mall.c64 #include <openssl/dso.h>
H A Dconf_mod.c65 #include <openssl/dso.h>
78 DSO *dso; member in struct:conf_module_st
111 static CONF_MODULE *module_add(DSO *dso, const char *name,
237 DSO *dso = NULL; local
249 dso = DSO_load(NULL, path, NULL, 0);
250 if (!dso) {
254 ifunc = (conf_init_func *)DSO_bind_func(dso, DSO_mod_init_name);
259 ffunc = (conf_finish_func *)DSO_bind_func(dso, DSO_mod_finish_name);
261 md = module_add(dso, name, ifunc, ffunc);
269 if (dso)
277 module_add(DSO *dso, const char *name, conf_init_func *ifunc, conf_finish_func *ffunc) argument
[all...]
H A Dconf_sap.c64 #include <openssl/dso.h>
H A DMakefile113 conf_mall.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
128 conf_mod.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
142 conf_sap.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
/freebsd-9.3-release/crypto/openssl/fips/
H A Dfips_premain.c148 # include <openssl/dso.h>
153 DSO *dso; local
158 fprintf(stderr, "usage: %s libcrypto.dso\n", argv[0]);
169 dso = DSO_load(NULL, argv[1], NULL, DSO_FLAG_NO_NAME_TRANSLATION);
170 if (dso == NULL) {
179 func = DSO_bind_func(dso, "FINGERPRINT_premain");
H A Dfipsld123 SIG=`"${FIPS_SIG}" -dso "${TARGET}"`
/freebsd-9.3-release/crypto/openssl/engines/
H A De_4758cca.c59 #include <openssl/dso.h>
174 static DSO *dso = NULL; variable
283 if (dso) {
288 dso = DSO_load(NULL, get_CCA4758_LIB_NAME(), NULL, 0);
289 if (!dso) {
295 DSO_bind_func(dso, n_keyRecordRead)) ||
297 DSO_bind_func(dso, n_randomNumberGenerate)) ||
299 DSO_bind_func(dso, n_digitalSignatureGenerate)) ||
301 DSO_bind_func(dso, n_digitalSignatureVerify)) ||
303 DSO_bind_func(dso, n_publicKeyExtrac
[all...]
H A DMakefile146 e_4758cca.o: ../include/openssl/crypto.h ../include/openssl/dso.h
163 e_aep.o: ../include/openssl/dsa.h ../include/openssl/dso.h
179 e_atalla.o: ../include/openssl/dsa.h ../include/openssl/dso.h
208 e_chil.o: ../include/openssl/dso.h ../include/openssl/e_os2.h
226 e_cswift.o: ../include/openssl/dsa.h ../include/openssl/dso.h
256 e_nuron.o: ../include/openssl/dsa.h ../include/openssl/dso.h
272 e_sureware.o: ../include/openssl/dsa.h ../include/openssl/dso.h
290 e_ubsec.o: ../include/openssl/dsa.h ../include/openssl/dso.h
H A De_nuron.c64 #include <openssl/dso.h>
/freebsd-9.3-release/contrib/gcc/config/
H A Ddarwin-crt3.c64 typedef int (*cxa_atexit_p)(void (*func) (void*), void* arg, const void* dso);
65 typedef void (*cxa_finalize_p)(const void *dso);
176 /* We re-use &aed as the 'dso' parameter, since it's a unique address. */
456 atexit_common (const struct one_atexit_routine *r, const void *dso) argument
476 return cxa_atexit (r->callback.cac, r->arg, dso);
502 return cxa_atexit (cxa_atexit_wrapper, alloced, dso);
510 const void* dso) __attribute__((visibility("hidden")));
513 __cxa_atexit (cxa_atexit_callback func, void* arg, const void* dso) argument
519 return atexit_common (&r, dso);
/freebsd-9.3-release/crypto/openssl/crypto/evp/
H A Devp_cnf.c65 #include <openssl/dso.h>
/freebsd-9.3-release/crypto/openssl/crypto/err/
H A Derr_all.c90 #include <openssl/dso.h>
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dasn_moid.c65 #include <openssl/dso.h>
/freebsd-9.3-release/crypto/openssl/crypto/engine/
H A Deng_openssl.c69 #include <openssl/dso.h>
H A Deng_dyn.c61 #include <openssl/dso.h>

Completed in 107 milliseconds

12