Home
last modified time | relevance | path

Searched refs:dlhandle (Results 1 – 6 of 6) sorted by relevance

/external/bluetooth/bluedroid/hci/src/
Dbt_hw.c209 void *dlhandle; in init_vnd_if() local
211 dlhandle = dlopen("libbt-vendor.so", RTLD_NOW); in init_vnd_if()
212 if (!dlhandle) in init_vnd_if()
218 bt_vnd_if = (bt_vendor_interface_t *) dlsym(dlhandle, "BLUETOOTH_VENDOR_LIB_INTERFACE"); in init_vnd_if()
/external/elfutils/libebl/
Deblclosebackend.c69 if (ebl->dlhandle != NULL) in ebl_closebackend()
70 (void) dlclose (ebl->dlhandle); in ebl_closebackend()
DlibeblP.h84 void *dlhandle; member
Deblopenbackend.c377 result->dlhandle = h;
393 result->dlhandle = NULL;
402 result->dlhandle = NULL;
/external/wpa_supplicant_8/src/eap_peer/
Dtncc.c107 void *dlhandle; /* from dlopen() */ member
325 void *handle = imc->dlhandle; in tncc_imc_resolve_funcs()
456 imc->dlhandle = LoadLibrary(lib); in tncc_load_imc()
460 imc->dlhandle = LoadLibrary(imc->path); in tncc_load_imc()
462 if (imc->dlhandle == NULL) { in tncc_load_imc()
468 imc->dlhandle = dlopen(imc->path, RTLD_LAZY); in tncc_load_imc()
469 if (imc->dlhandle == NULL) { in tncc_load_imc()
496 if (imc->dlhandle) { in tncc_unload_imc()
498 FreeLibrary(imc->dlhandle); in tncc_unload_imc()
500 dlclose(imc->dlhandle); in tncc_unload_imc()
/external/wpa_supplicant_8/src/eap_server/
Dtncs.c107 void *dlhandle; /* from dlopen() */ member
403 void *handle = imv->dlhandle; in tncs_imv_resolve_funcs()
515 imv->dlhandle = dlopen(imv->path, RTLD_LAZY); in tncs_load_imv()
516 if (imv->dlhandle == NULL) { in tncs_load_imv()
548 if (imv->dlhandle) in tncs_unload_imv()
549 dlclose(imv->dlhandle); in tncs_unload_imv()