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

123

/freebsd-11-stable/lib/libc/stdlib/
H A Datexit.h36 void __cxa_finalize(void *dso);
H A Datexit.c172 * with given dso handle is unloaded dynamically.
175 __cxa_atexit(void (*func)(void *), void *arg, void *dso) argument
183 fn.fn_dso = dso;
196 * object owning 'dso'. Note: if 'dso' is NULL, then all remaining
200 __cxa_finalize(void *dso) argument
207 if (dso != NULL) {
208 has_phdr = _rtld_addr_phdr(dso, &phdr_info);
220 if (dso != NULL && dso !
[all...]
H A Dcxa_thread_atexit_impl.c70 void *dso; member in struct:cxa_thread_dtor
98 new_dtor->dso = dso_symbol;
108 if (_rtld_addr_phdr(dtor->dso, &phdr_info) &&
113 "unloaded dso, skipping\n", (void *)(dtor->func));
/freebsd-11-stable/lib/libc/arm/aeabi/
H A Daeabi_atexit.c34 __aeabi_atexit(void *object, void (*func)(void*), void *dso) argument
36 return __cxa_atexit(func, object, dso);
/freebsd-11-stable/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;
132 int DSO_free(DSO *dso) argument
136 if (dso == NULL) {
141 i = CRYPTO_add(&dso->references, -1, CRYPTO_LOCK_DSO);
143 REF_PRINT("DSO", dso);
174 DSO_flags(DSO *dso) argument
179 DSO_up_ref(DSO *dso) argument
190 DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) argument
244 DSO_bind_var(DSO *dso, const char *symname) argument
264 DSO_bind_func(DSO *dso, const char *symname) argument
293 DSO_ctrl(DSO *dso, int cmd, long larg, void *parg) argument
322 DSO_set_name_converter(DSO *dso, DSO_NAME_CONVERTER_FUNC cb, DSO_NAME_CONVERTER_FUNC *oldcb) argument
335 DSO_get_filename(DSO *dso) argument
344 DSO_set_filename(DSO *dso, const char *filename) argument
369 DSO_merge(DSO *dso, const char *filespec1, const char *filespec2) argument
386 DSO_convert_filename(DSO *dso, const char *filename) argument
417 DSO_get_loaded_filename(DSO *dso) argument
[all...]
H A Ddso_beos.c63 #include <openssl/dso.h>
74 static int beos_load(DSO *dso);
75 static int beos_unload(DSO *dso);
76 static void *beos_bind_var(DSO *dso, const char *symname);
77 static DSO_FUNC_TYPE beos_bind_func(DSO *dso, const char *symname);
79 static int beos_unbind_var(DSO *dso, char *symname, void *symptr);
80 static int beos_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
81 static int beos_init(DSO *dso);
82 static int beos_finish(DSO *dso);
83 static long beos_ctrl(DSO *dso, in
114 beos_load(DSO *dso) argument
146 beos_unload(DSO *dso) argument
171 beos_bind_var(DSO *dso, const char *symname) argument
197 beos_bind_func(DSO *dso, const char *symname) argument
224 beos_name_converter(DSO *dso, const char *filename) argument
[all...]
H A Ddso.h0 /* dso.h */
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
124 dl_load(DSO *dso) argument
165 dl_unload(DSO *dso) argument
188 dl_bind_var(DSO *dso, const char *symname) argument
214 dl_bind_func(DSO *dso, const char *symname) argument
240 dl_merger(DSO *dso, const char *filespec1, const char *filespec2) argument
312 dl_name_converter(DSO *dso, const char *filename) argument
[all...]
H A Ddso_dlfcn.c71 #include <openssl/dso.h>
98 static int dlfcn_load(DSO *dso);
99 static int dlfcn_unload(DSO *dso);
100 static void *dlfcn_bind_var(DSO *dso, const char *symname);
101 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname);
103 static int dlfcn_unbind(DSO *dso, char *symname, void *symptr);
104 static int dlfcn_init(DSO *dso);
105 static int dlfcn_finish(DSO *dso);
106 static long dlfcn_ctrl(DSO *dso, int cmd, long larg, void *parg);
108 static char *dlfcn_name_converter(DSO *dso, cons
170 dlfcn_load(DSO *dso) argument
207 dlfcn_unload(DSO *dso) argument
230 dlfcn_bind_var(DSO *dso, const char *symname) argument
256 dlfcn_bind_func(DSO *dso, const char *symname) argument
286 dlfcn_merger(DSO *dso, const char *filespec1, const char *filespec2) argument
354 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
83 dso_beos.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
91 dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
99 dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
106 dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
114 dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
122 dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
130 dso_openssl.o: ../../include/openssl/dso
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Ddso.c76 svn_dso_load_internal(apr_dso_handle_t **dso, const char *fname) argument
78 *dso = svn_hash_gets(dso_cache, fname);
83 if (*dso == NOT_THERE)
85 *dso = NULL;
90 if (! *dso)
92 apr_status_t status = apr_dso_load(dso, fname, dso_pool);
100 apr_dso_error(*dso, buf, 1024));
102 *dso = NULL;
110 /* Stash the dso so we can use it next time. */
111 svn_hash_sets(dso_cache, apr_pstrdup(dso_pool, fname), *dso);
118 svn_dso_load(apr_dso_handle_t **dso, const char *fname) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/
H A Dsvn_dso.h77 * Attempt to load @a libname, returning it in @a *dso.
79 * If @a libname cannot be loaded set @a *dso to NULL and return
90 svn_dso_load(apr_dso_handle_t **dso,
/freebsd-11-stable/contrib/netbsd-tests/libexec/ld.elf_so/
H A Dh_locking.c63 void *dso; local
66 if ((dso = dlopen("libh_helper_dso2.so", RTLD_LAZY)) == NULL) {
70 tls_callback_sym = dlsym(dso, "tls_callback");
84 void *dso; local
85 if ((dso = dlopen(arg, RTLD_LAZY)) == NULL) {
89 dlclose(dso);
/freebsd-11-stable/crypto/openssl/crypto/conf/
H A Dconf_mall.c64 #include <openssl/dso.h>
H A Dconf_sap.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...]
/freebsd-11-stable/contrib/apr/
H A Dbuild.conf17 dso file_io locks memory misc mmap network_io poll random
/freebsd-11-stable/contrib/apr/include/
H A Dapr_dso.h80 * @param dso The dso handle that has been opened
81 * @param buf Location to store the dso error
84 APR_DECLARE(const char *) apr_dso_error(apr_dso_handle_t *dso, char *buf, apr_size_t bufsize);
/freebsd-11-stable/lib/libthr/tests/dlopen/dso/
H A DMakefile3 TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libpthread/dlopen/dso
/freebsd-11-stable/contrib/apr/dso/unix/
H A Ddso.c60 apr_dso_handle_t *dso = thedso; local
62 if (dso->handle == NULL)
66 shl_unload((shl_t)dso->handle);
68 if (dso->handle != DYLD_LIBRARY_HANDLE) {
69 NSUnLinkModule(dso->handle, FALSE);
72 if (dlclose(dso->handle) != 0)
75 dso->handle = NULL;
131 /* This special archive.a(dso.so) syntax is required for
241 APR_DECLARE(const char *) apr_dso_error(apr_dso_handle_t *dso, char *buffer, argument
244 if (dso
[all...]
/freebsd-11-stable/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...]
/freebsd-11-stable/lib/libc/tests/tls/
H A DMakefile6 SUBDIR+= dso
/freebsd-11-stable/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);

Completed in 111 milliseconds

123