/external/tpm2-tss/src/tss2-tcti/ |
D | tctildr-dl.c | 58 info_from_handle (void *dlhandle) in info_from_handle() argument 62 if (dlhandle == NULL) in info_from_handle() 65 info_func = dlsym (dlhandle, TSS2_TCTI_INFO_SYMBOL); in info_from_handle() 126 void **dlhandle) in tcti_from_file() argument 155 if (dlhandle) in tcti_from_file() 156 *dlhandle = handle; in tcti_from_file() 164 void **dlhandle) in get_info_default() argument 172 if (info == NULL || dlhandle == NULL) { in get_info_default() 209 *dlhandle = handle; in get_info_default() 215 tctildr_get_default(TSS2_TCTI_CONTEXT ** tcticontext, void **dlhandle) in tctildr_get_default() argument [all …]
|
D | tctildr-dl.h | 12 info_from_handle (void *dlhandle); 24 void **dlhandle); 27 void **dlhandle); 29 tctildr_get_default(TSS2_TCTI_CONTEXT ** tcticontext, void **dlhandle);
|
D | tctildr-nodl.c | 118 tctildr_get_default(TSS2_TCTI_CONTEXT ** tcticontext, void **dlhandle) in tctildr_get_default() argument 122 (void)dlhandle; in tctildr_get_default()
|
D | tctildr-interface.h | 16 void **dlhandle);
|
/external/libxml2/os400/dlfcn/ |
D | dlfcn.c | 1159 void * dlhandle; in dlopen() local 1188 dlhandle = dlopenqsys(&dllinfo); in dlopen() 1191 dlhandle = dlopenqsys(&dllinfo); in dlopen() 1193 dlhandle = dlopenqsys(&dllinfo); in dlopen() 1195 dlhandle = dlopenqsys(&dllinfo); in dlopen() 1198 dlhandle = dlopenqsys(&dllinfo); in dlopen() 1201 dlhandle = dlopenqsys(&dllinfo); in dlopen() 1204 dlhandle = dlopenqsys(&dllinfo); in dlopen() 1206 dlhandle = NULL; in dlopen() 1208 if (!dlhandle && errno) in dlopen() [all …]
|
/external/tpm2-tss/test/unit/ |
D | tctildr-getinfo.c | 168 __wrap_info_from_handle (void *dlhandle) in __wrap_info_from_handle() argument 174 __wrap_get_tcti_default(TSS2_TCTI_CONTEXT ** tcticontext, void **dlhandle) in __wrap_get_tcti_default() argument 183 void **dlhandle) in __wrap_tcti_from_file() argument 203 void **dlhandle) in __wrap_get_info_default() argument 207 *dlhandle = mock_type (void*); in __wrap_get_info_default()
|
/external/fastrpc/src/ |
D | mod_table.c | 108 void* dlhandle; member 187 if(dm->dlhandle) { in open_mod_table_dtor_imp() 188 DLCLOSE(dm->dlhandle); in open_mod_table_dtor_imp() 417 dm->dlhandle = DLOPEN(tmp,RTLD_NOW); in open_mod_table_open_dynamic() 418 FARF(HIGH, "got %p for dlopen %s", dm->dlhandle, tmp); in open_mod_table_open_dynamic() 419 VERIFY(!(nErr = (dlErr = dm->dlhandle == 0 ? -5 : 0))); in open_mod_table_open_dynamic() 431 dm->handle_invoke = (handle_invoke_fn) DLSYM(dm->dlhandle, tmp); in open_mod_table_open_dynamic() 433 dm->invoke = (invoke_fn) DLSYM(dm->dlhandle, tmp); in open_mod_table_open_dynamic() 477 if(dm && dm->dlhandle) { in open_mod_table_open_dynamic() 478 DLCLOSE(dm->dlhandle); in open_mod_table_open_dynamic() [all …]
|
/external/mesa3d/src/glx/windows/ |
D | windowsgl.c | 342 void *dlhandle = windows_get_dl_handle(); in windows_check_render_test() local 343 const char *(*proc)(int) = dlsym(dlhandle, "glGetString"); in windows_check_render_test() 370 void *dlhandle = windows_get_dl_handle(); in windows_extensions_test() local 371 const char *(*proc)(int) = dlsym(dlhandle, "glGetString"); in windows_extensions_test()
|
/external/openssh/ |
D | ssh-sk.c | 50 void *dlhandle; member 92 if (p->dlhandle != NULL) in sshsk_free() 93 dlclose(p->dlhandle); in sshsk_free() 126 if ((ret->dlhandle = dlopen(path, RTLD_NOW)) == NULL) { in sshsk_open() 130 if ((ret->sk_api_version = dlsym(ret->dlhandle, in sshsk_open() 145 if ((ret->sk_enroll = dlsym(ret->dlhandle, "sk_enroll")) == NULL) { in sshsk_open() 150 if ((ret->sk_sign = dlsym(ret->dlhandle, "sk_sign")) == NULL) { in sshsk_open() 155 if ((ret->sk_load_resident_keys = dlsym(ret->dlhandle, in sshsk_open()
|
/external/wpa_supplicant_8/src/eap_peer/ |
D | tncc.c | 60 void *dlhandle; /* from dlopen() */ member 277 void *handle = imc->dlhandle; in tncc_imc_resolve_funcs() 408 imc->dlhandle = LoadLibrary(lib); in tncc_load_imc() 412 imc->dlhandle = LoadLibrary(imc->path); in tncc_load_imc() 414 if (imc->dlhandle == NULL) { in tncc_load_imc() 420 imc->dlhandle = dlopen(imc->path, RTLD_LAZY); in tncc_load_imc() 421 if (imc->dlhandle == NULL) { in tncc_load_imc() 448 if (imc->dlhandle) { in tncc_unload_imc() 450 FreeLibrary(imc->dlhandle); in tncc_unload_imc() 452 dlclose(imc->dlhandle); in tncc_unload_imc()
|
/external/wpa_supplicant_8/src/eap_server/ |
D | tncs.c | 41 void *dlhandle; /* from dlopen() */ member 335 void *handle = imv->dlhandle; in tncs_imv_resolve_funcs() 447 imv->dlhandle = dlopen(imv->path, RTLD_LAZY); in tncs_load_imv() 448 if (imv->dlhandle == NULL) { in tncs_load_imv() 480 if (imv->dlhandle) in tncs_unload_imv() 481 dlclose(imv->dlhandle); in tncs_unload_imv()
|
/external/tpm2-tss/src/tss2-esys/ |
D | esys_int.h | 175 void *dlhandle; /**< The handle of dlopen if the tcti was member
|
/external/elfutils/libebl/ |
D | ChangeLog | 80 Don't assign result->dlhandle.
|