Home
last modified time | relevance | path

Searched refs:dso (Results 1 – 25 of 31) sorted by relevance

12

/freebsd-9-stable/crypto/openssl/crypto/dso/
Ddso_lib.c82 DSO_METHOD *DSO_get_method(DSO *dso) in DSO_get_method() argument
84 return (dso->meth); in DSO_get_method()
87 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth) in DSO_set_method() argument
90 mtmp = dso->meth; in DSO_set_method()
91 dso->meth = meth; in DSO_set_method()
131 int DSO_free(DSO *dso) in DSO_free() argument
135 if (dso == NULL) { in DSO_free()
140 i = CRYPTO_add(&dso->references, -1, CRYPTO_LOCK_DSO); in DSO_free()
142 REF_PRINT("DSO", dso); in DSO_free()
153 if ((dso->meth->dso_unload != NULL) && !dso->meth->dso_unload(dso)) { in DSO_free()
[all …]
Ddso_dl.c76 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, int cmd, long larg, void *parg);
87 static char *dl_name_converter(DSO *dso, const char *filename);
[all …]
Ddso_dlfcn.c78 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, const char *filename);
89 static char *dlfcn_merger(DSO *dso, const char *filespec1,
[all …]
Ddso.h147 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);
239 int DSO_free(DSO *dso);
[all …]
DMakefile5 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.h ../../include/openssl/e_os2.h
137 dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
DREADME17 (i) checks if we're win32 (if(strstr(dso->meth->name, "win32")....)
21 finish with (return dso->meth->dso_name_converter(dso,NULL)).
/freebsd-9-stable/crypto/openssl/crypto/conf/
Dconf_mod.c78 DSO *dso; member
111 static CONF_MODULE *module_add(DSO *dso, const char *name,
237 DSO *dso = NULL; in module_load_dso() local
249 dso = DSO_load(NULL, path, NULL, 0); in module_load_dso()
250 if (!dso) { in module_load_dso()
254 ifunc = (conf_init_func *)DSO_bind_func(dso, DSO_mod_init_name); in module_load_dso()
259 ffunc = (conf_finish_func *)DSO_bind_func(dso, DSO_mod_finish_name); in module_load_dso()
261 md = module_add(dso, name, ifunc, ffunc); in module_load_dso()
269 if (dso) in module_load_dso()
270 DSO_free(dso); in module_load_dso()
[all …]
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
DREADME29 path=/some/path/to/some/dso.so
/freebsd-9-stable/lib/libc/stdlib/
Datexit.c137 __cxa_atexit(void (*func)(void *), void *arg, void *dso) in __cxa_atexit() argument
145 fn.fn_dso = dso; in __cxa_atexit()
162 __cxa_finalize(void *dso) in __cxa_finalize() argument
169 if (dso != NULL) { in __cxa_finalize()
170 has_phdr = _rtld_addr_phdr(dso, &phdr_info); in __cxa_finalize()
182 if (dso != NULL && dso != fn.fn_dso) { in __cxa_finalize()
205 if (dso == NULL) in __cxa_finalize()
Datexit.h36 void __cxa_finalize(void *dso);
/freebsd-9-stable/crypto/openssl/engines/
De_4758cca.c174 static DSO *dso = NULL; variable
283 if (dso) { in ibm_4758_cca_init()
288 dso = DSO_load(NULL, get_CCA4758_LIB_NAME(), NULL, 0); in ibm_4758_cca_init()
289 if (!dso) { in ibm_4758_cca_init()
295 DSO_bind_func(dso, n_keyRecordRead)) || in ibm_4758_cca_init()
297 DSO_bind_func(dso, n_randomNumberGenerate)) || in ibm_4758_cca_init()
299 DSO_bind_func(dso, n_digitalSignatureGenerate)) || in ibm_4758_cca_init()
301 DSO_bind_func(dso, n_digitalSignatureVerify)) || in ibm_4758_cca_init()
303 DSO_bind_func(dso, n_publicKeyExtract)) || in ibm_4758_cca_init()
305 DSO_bind_func(dso, n_pkaEncrypt)) || !(pkaDecrypt = (F_PKADECRYPT) in ibm_4758_cca_init()
[all …]
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
/freebsd-9-stable/contrib/gcc/config/
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);
456 atexit_common (const struct one_atexit_routine *r, const void *dso) in atexit_common() argument
476 return cxa_atexit (r->callback.cac, r->arg, dso); in atexit_common()
502 return cxa_atexit (cxa_atexit_wrapper, alloced, dso); in atexit_common()
510 const void* dso) __attribute__((visibility("hidden")));
513 __cxa_atexit (cxa_atexit_callback func, void* arg, const void* dso) in __cxa_atexit() argument
519 return atexit_common (&r, dso); in __cxa_atexit()
/freebsd-9-stable/crypto/openssl/fips/
Dfips_premain.c153 DSO *dso; in main() local
169 dso = DSO_load(NULL, argv[1], NULL, DSO_FLAG_NO_NAME_TRANSLATION); in main()
170 if (dso == NULL) { in main()
179 func = DSO_bind_func(dso, "FINGERPRINT_premain"); in main()
Dfipsld123 SIG=`"${FIPS_SIG}" -dso "${TARGET}"`
/freebsd-9-stable/crypto/openssl/crypto/err/
Dopenssl.ec26 L DSO crypto/dso/dso.h crypto/dso/dso_err.c
DMakefile88 err_all.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
/freebsd-9-stable/crypto/openssl/
DPROBLEMS194 * If configured with ./config no-dso, toolkit still gets linked with -ldl,
197 We don't have framework to associate -ldl with no-dso, therefore the only
198 way is to edit Makefile right after ./config no-dso and remove -ldl from
DMakefile.org143 bn ec rsa dsa ecdsa dh ecdh dso engine \
DMakefile145 bn ec rsa dsa ecdsa dh ecdh dso engine \
DConfigure15 …eads] [[no-]shared] [[no-]zlib|zlib-dynamic] [enable-montasm] [no-asm] [no-dso] [no-krb5] [386] [-…
53 # no-dso do not compile in any native shared-library methods. This
1031 if (/^dso$/)
/freebsd-9-stable/secure/lib/libcrypto/
DMakefile139 INCS+= dso.h
412 ${LCRYPTO_SRC}/crypto/dso \
/freebsd-9-stable/crypto/openssl/crypto/engine/
DMakefile146 eng_dyn.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
230 eng_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
248 eng_padlock.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
/freebsd-9-stable/contrib/bind9/
Dconfigure.in801 #include <openssl/dso.h>
808 #include <openssl/dso.h>

12