/freebsd/contrib/netbsd-tests/lib/libc/string/ |
H A D | t_strchr.c | 61 void *dl_handle; in ATF_TC_BODY() local 249 dl_handle = dlopen(NULL, RTLD_LAZY); in ATF_TC_BODY() 250 strchr_fn = dlsym(dl_handle, "test_strchr"); in ATF_TC_BODY() 285 (void)dlclose(dl_handle); in ATF_TC_BODY()
|
H A D | t_strchrnul.c | 60 void *dl_handle; in ATF_TC_BODY() local 248 dl_handle = dlopen(NULL, RTLD_LAZY); in ATF_TC_BODY() 249 strchrnul_fn = dlsym(dl_handle, "test_strchrnul"); in ATF_TC_BODY() 284 (void)dlclose(dl_handle); in ATF_TC_BODY()
|
H A D | t_strlen.c | 43 void *dl_handle; in ATF_TC_BODY() local 111 dl_handle = dlopen(NULL, RTLD_LAZY); in ATF_TC_BODY() 112 strlen_fn = dlsym(dl_handle, "test_strlen"); in ATF_TC_BODY() 139 (void)dlclose(dl_handle); in ATF_TC_BODY()
|
/freebsd/lib/libc/tests/string/ |
H A D | strcmp_test.c | 122 void *dl_handle; in ATF_TP_ADD_TCS() local 124 dl_handle = dlopen(NULL, RTLD_LAZY); in ATF_TP_ADD_TCS() 125 strcmp_fn = dlsym(dl_handle, "test_strcmp"); in ATF_TP_ADD_TCS()
|
H A D | memrchr_test.c | 103 void *dl_handle; in ATF_TP_ADD_TCS() local 105 dl_handle = dlopen(NULL, RTLD_LAZY); in ATF_TP_ADD_TCS() 106 memrchr_fn = dlsym(dl_handle, "test_memrchr"); in ATF_TP_ADD_TCS()
|
H A D | strlcpy_test.c | 171 void *dl_handle; in ATF_TP_ADD_TCS() local 173 dl_handle = dlopen(NULL, RTLD_LAZY); in ATF_TP_ADD_TCS() 174 strlcpy_fn = dlsym(dl_handle, "test_strlcpy"); in ATF_TP_ADD_TCS()
|
H A D | memcmp_test.c | 147 void *dl_handle; in ATF_TP_ADD_TCS() local 149 dl_handle = dlopen(NULL, RTLD_LAZY); in ATF_TP_ADD_TCS() 150 memcmp_fn = dlsym(dl_handle, "test_" __XSTRING(MEMCMP)); in ATF_TP_ADD_TCS()
|
H A D | stpncpy_test.c | 169 void *dl_handle; in ATF_TP_ADD_TCS() local 171 dl_handle = dlopen(NULL, RTLD_LAZY); in ATF_TP_ADD_TCS() 172 stpncpy_fn = dlsym(dl_handle, "test_stpncpy"); in ATF_TP_ADD_TCS()
|
H A D | strncmp_test.c | 154 void *dl_handle; in ATF_TP_ADD_TCS() local 156 dl_handle = dlopen(NULL, RTLD_LAZY); in ATF_TP_ADD_TCS() 157 strncmp_fn = dlsym(dl_handle, "test_strncmp"); in ATF_TP_ADD_TCS()
|
H A D | memccpy_test.c | 216 void *dl_handle; in ATF_TP_ADD_TCS() local 218 dl_handle = dlopen(NULL, RTLD_LAZY); in ATF_TP_ADD_TCS() 219 memccpy_fn = dlsym(dl_handle, "test_memccpy"); in ATF_TP_ADD_TCS()
|
/freebsd/contrib/wpa/src/eap_peer/ |
H A D | eap_methods.c | 216 eap_methods->dl_handle = handle; in eap_peer_method_load() 248 if (m == NULL || m->dl_handle == NULL) in eap_peer_method_unload() 256 handle = m->dl_handle; in eap_peer_method_unload() 365 handle = m->dl_handle; in eap_peer_unregister_methods()
|
H A D | eap_i.h | 263 void *dl_handle; member
|
/freebsd/crypto/heimdal/lib/hx509/ |
H A D | ks_p11.c | 64 void *dl_handle; member 867 p->dl_handle = dlopen(list, RTLD_NOW); in p11_init() 869 if (p->dl_handle == NULL) { in p11_init() 876 getFuncs = (CK_C_GetFunctionList) dlsym(p->dl_handle, "C_GetFunctionList"); in p11_init() 1012 if (p->dl_handle) in p11_release_module() 1013 dlclose(p->dl_handle); in p11_release_module()
|
/freebsd/contrib/unbound/contrib/ |
H A D | fastrpz.patch | 1223 + * @param[in,out] dl_handle: NULL or pointer to new dlopen handle 1228 +librpz_lib_open(librpz_emsg_t *emsg, void **dl_handle, const char *path) 1238 + if (dl_handle != NULL && *dl_handle != NULL) { 1239 + if (dlclose(*dl_handle) != 0) { 1244 + *dl_handle = NULL; 1256 + if (dl_handle != NULL) 1257 + *dl_handle = handle; 1282 + if (dl_handle != NULL) 1283 + *dl_handle = handle; 1299 +librpz_lib_open(librpz_emsg_t *emsg, void **dl_handle, const char *path) [all …]
|