Home
last modified time | relevance | path

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

/external/fio/
Dioengines.c92 void *dlhandle; in dlopen_ioengine() local
97 dlhandle = dlopen(engine_lib, RTLD_LAZY); in dlopen_ioengine()
98 if (!dlhandle) { in dlopen_ioengine()
107 ops = dlsym(dlhandle, engine_lib); in dlopen_ioengine()
109 ops = dlsym(dlhandle, "ioengine"); in dlopen_ioengine()
118 get_ioengine_t get_ioengine = dlsym(dlhandle, "get_ioengine"); in dlopen_ioengine()
126 dlclose(dlhandle); in dlopen_ioengine()
130 ops->dlhandle = dlhandle; in dlopen_ioengine()
184 if (td->io_ops->dlhandle) in free_ioengine()
185 dlclose(td->io_ops->dlhandle); in free_ioengine()
Dioengine.h153 void *dlhandle; member
/external/elfutils/0.153/libebl/
Deblclosebackend.c69 if (ebl->dlhandle != NULL) in ebl_closebackend()
70 (void) dlclose (ebl->dlhandle); in ebl_closebackend()
DlibeblP.h85 void *dlhandle; member
Deblopenbackend.c379 result->dlhandle = h;
395 result->dlhandle = NULL;
404 result->dlhandle = NULL;
/external/wpa_supplicant_8/src/eap_peer/
Dtncc.c60 void *dlhandle; /* from dlopen() */ member
278 void *handle = imc->dlhandle; in tncc_imc_resolve_funcs()
409 imc->dlhandle = LoadLibrary(lib); in tncc_load_imc()
413 imc->dlhandle = LoadLibrary(imc->path); in tncc_load_imc()
415 if (imc->dlhandle == NULL) { in tncc_load_imc()
421 imc->dlhandle = dlopen(imc->path, RTLD_LAZY); in tncc_load_imc()
422 if (imc->dlhandle == NULL) { in tncc_load_imc()
449 if (imc->dlhandle) { in tncc_unload_imc()
451 FreeLibrary(imc->dlhandle); in tncc_unload_imc()
453 dlclose(imc->dlhandle); in tncc_unload_imc()
/external/wpa_supplicant_8/src/eap_server/
Dtncs.c41 void *dlhandle; /* from dlopen() */ member
337 void *handle = imv->dlhandle; in tncs_imv_resolve_funcs()
449 imv->dlhandle = dlopen(imv->path, RTLD_LAZY); in tncs_load_imv()
450 if (imv->dlhandle == NULL) { in tncs_load_imv()
482 if (imv->dlhandle) in tncs_unload_imv()
483 dlclose(imv->dlhandle); in tncs_unload_imv()