Home | History | Annotate | Download | only in eap_peer

Lines Matching refs:dlhandle

60 	void *dlhandle; /* from dlopen() */
279 void *handle = imc->dlhandle;
410 imc->dlhandle = LoadLibrary(lib);
414 imc->dlhandle = LoadLibrary(imc->path);
416 if (imc->dlhandle == NULL) {
422 imc->dlhandle = dlopen(imc->path, RTLD_LAZY);
423 if (imc->dlhandle == NULL) {
450 if (imc->dlhandle) {
452 FreeLibrary(imc->dlhandle);
454 dlclose(imc->dlhandle);