| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| dso.h | 28 * one or two possible DSO methods. However, the following flag can be 29 * set in a DSO to prevent *any* native name-translation at all - eg. if 44 * Don't unload the DSO when we call DSO_free() 57 typedef struct dso_st DSO; 62 * callbacks) that transform filenames. They are passed a DSO structure 63 * pointer (or NULL if they are to be used independently of a DSO object) and 68 typedef char *(*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); 71 * callbacks) that merge two file specifications. They are passed a DSO 72 * structure pointer (or NULL if they are to be used independently of a DSO 78 * fashion that is sensible for the DSO method in question. The only rul [all...] |
| /src/crypto/external/bsd/openssl/dist/include/internal/ |
| dso.h | 28 * one or two possible DSO methods. However, the following flag can be 29 * set in a DSO to prevent *any* native name-translation at all - eg. if 44 * Don't unload the DSO when we call DSO_free() 57 typedef struct dso_st DSO; 62 * callbacks) that transform filenames. They are passed a DSO structure 63 * pointer (or NULL if they are to be used independently of a DSO object) and 68 typedef char *(*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); 71 * callbacks) that merge two file specifications. They are passed a DSO 72 * structure pointer (or NULL if they are to be used independently of a DSO 78 * fashion that is sensible for the DSO method in question. The only rul [all...] |
| /src/crypto/external/bsd/openssl.old/dist/include/internal/ |
| dso.h | 27 * one or two possible DSO methods. However, the following flag can be 28 * set in a DSO to prevent *any* native name-translation at all - eg. if 43 * Don't unload the DSO when we call DSO_free() 56 typedef struct dso_st DSO; 61 * callbacks) that transform filenames. They are passed a DSO structure 62 * pointer (or NULL if they are to be used independently of a DSO object) and 67 typedef char *(*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); 70 * callbacks) that merge two file specifications. They are passed a DSO 71 * structure pointer (or NULL if they are to be used independently of a DSO 77 * fashion that is sensible for the DSO method in question. The only rul [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/dso/ |
| dso_local.h | 12 #include "internal/dso.h" 49 * used for this DSO. 54 * the DSO was actually loaded. It is NULL iff the DSO is not currently 59 * used to indicate (a) whether this DSO structure corresponds to a 73 int (*dso_load)(DSO *dso); 75 int (*dso_unload)(DSO *dso); 83 DSO_FUNC_TYPE (*dso_bind_func)(DSO *dso, const char *symname) [all...] |
| dso_lib.c | 13 static DSO *DSO_new_method(DSO_METHOD *meth) 15 DSO *ret; 42 DSO *DSO_new(void) 47 int DSO_free(DSO *dso) 51 if (dso == NULL) 54 if (CRYPTO_DOWN_REF(&dso->references, &i) <= 0) 57 REF_PRINT_COUNT("DSO", i, dso); 62 if ((dso->flags & DSO_FLAG_NO_UNLOAD_ON_FREE) == 0) [all...] |
| 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 [all...] |
| dso_dlfcn.c | 38 static int dlfcn_load(DSO *dso); 39 static int dlfcn_unload(DSO *dso); 40 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname); 41 static char *dlfcn_name_converter(DSO *dso, const char *filename); 42 static char *dlfcn_merger(DSO *dso, const char *filespec1 [all...] |
| dso_vms.c | 50 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 [all...] |
| 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 [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/dso/ |
| dso_local.h | 12 #include "internal/dso.h" 49 * used for this DSO. 54 * the DSO was actually loaded. It is NULL iff the DSO is not currently 59 * used to indicate (a) whether this DSO structure corresponds to a 74 int (*dso_load) (DSO *dso); 76 int (*dso_unload) (DSO *dso); 84 DSO_FUNC_TYPE (*dso_bind_func) (DSO *dso, const char *symname) [all...] |
| dso_lib.c | 13 static DSO *DSO_new_method(DSO_METHOD *meth) 15 DSO *ret; 47 DSO *DSO_new(void) 52 int DSO_free(DSO *dso) 56 if (dso == NULL) 59 if (CRYPTO_DOWN_REF(&dso->references, &i, dso->lock) <= 0) 62 REF_PRINT_COUNT("DSO", dso); [all...] |
| 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 [all...] |
| 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 [all...] |
| 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 [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/dso/ |
| dso_local.h | 12 #include "internal/dso.h" 49 * used for this DSO. 54 * the DSO was actually loaded. It is NULL iff the DSO is not currently 59 * used to indicate (a) whether this DSO structure corresponds to a 74 int (*dso_load) (DSO *dso); 76 int (*dso_unload) (DSO *dso); 84 DSO_FUNC_TYPE (*dso_bind_func) (DSO *dso, const char *symname) [all...] |
| dso_lib.c | 15 static DSO *DSO_new_method(DSO_METHOD *meth) 17 DSO *ret; 57 DSO *DSO_new(void) 62 int DSO_free(DSO *dso) 66 if (dso == NULL) 69 if (CRYPTO_DOWN_REF(&dso->references, &i, dso->lock) <= 0) 72 REF_PRINT_COUNT("DSO", dso); [all...] |
| 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 [all...] |
| 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 [all...] |
| 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 [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/sections/ |
| macho.d | 41 alias DSO SectionGroup; 42 struct DSO 44 static int opApply(scope int delegate(ref DSO) dg) 46 foreach (dso; _loadedDSOs) 48 if (auto res = dg(*dso)) 54 static int opApplyReverse(scope int delegate(ref DSO) dg) 56 foreach_reverse (dso; _loadedDSOs) 58 if (auto res = dg(*dso)) 83 safeAssert(_moduleGroup.modules.length > 0, "No modules for DSO."); 93 Array!(DSO*) _deps; // D libraries needed by this DS [all...] |
| pecoff.d | 40 alias DSO SectionGroup; 41 struct DSO 43 static int opApply(scope int delegate(ref DSO) dg) 45 foreach (dso; _loadedDSOs) 47 if (auto res = dg(*dso)) 53 static int opApplyReverse(scope int delegate(ref DSO) dg) 55 foreach_reverse (dso; _loadedDSOs) 57 if (auto res = dg(*dso)) 82 safeAssert(_moduleGroup.modules.length > 0, "No modules for DSO."); 92 Array!(DSO*) _deps; // D libraries needed by this DS [all...] |
| elf.d | 99 alias DSO SectionGroup; 100 struct DSO 102 static int opApply(scope int delegate(ref DSO) dg) 104 foreach (dso; _loadedDSOs) 106 if (auto res = dg(*dso)) 112 static int opApplyReverse(scope int delegate(ref DSO) dg) 114 foreach_reverse (dso; _loadedDSOs) 116 if (auto res = dg(*dso)) 141 safeAssert(_moduleGroup.modules.length > 0, "No modules for DSO."); 142 safeAssert(_tlsMod || !_tlsSize, "Inconsistent TLS fields for DSO.") [all...] |
| /src/tests/lib/libpthread/dlopen/ |
| t_dso_pthread_create.c | 46 #define DSO TESTDIR "/h_pthread_dlopen.so" 72 "in -lpthread DSO"); 85 handle = dlopen(DSO, RTLD_NOW | RTLD_LOCAL);
|
| t_main_pthread_create.c | 42 #define DSO TESTDIR "/h_pthread_dlopen.so" 74 "Test if -lpthread main can call pthread_create() in DSO"); 86 handle = dlopen(DSO, RTLD_NOW | RTLD_LOCAL);
|
| t_dlopen.c | 43 #define DSO TESTDIR "/h_pthread_dlopen.so" 50 handle = dlopen(DSO, flags); 65 "Test if dlopen can load -lpthread DSO"); 76 "Test if dlopen can load -lpthread DSO"); 93 handle = dlopen(DSO, flags); 115 "Test if dlopen can load -lpthread DSO without breaking mutex"); 126 "Test if dlopen can load -lpthread DSO without breaking mutex"); 143 handle = dlopen(DSO, flags); 164 "Test if dlopen can load -lpthread DSO and use libc locked mutex"); 175 "Test if dlopen can load -lpthread DSO and use libc locked mutex") [all...] |