Home | History | Annotate | Download | only in eap_peer

Lines Matching defs:dlhandle

60 	void *dlhandle; /* from dlopen() */
278 void *handle = imc->dlhandle;
409 imc->dlhandle = LoadLibrary(lib);
413 imc->dlhandle = LoadLibrary(imc->path);
415 if (imc->dlhandle == NULL) {
421 imc->dlhandle = dlopen(imc->path, RTLD_LAZY);
422 if (imc->dlhandle == NULL) {
449 if (imc->dlhandle) {
451 FreeLibrary(imc->dlhandle);
453 dlclose(imc->dlhandle);