Home
last modified time | relevance | path

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

/freebsd/contrib/wpa/src/eap_peer/
H A Dtncc.c60 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()
/freebsd/crypto/openssh/
H A Dssh-sk.c60 void *dlhandle; member
102 if (p->dlhandle != NULL) in sshsk_free()
103 dlclose(p->dlhandle); in sshsk_free()
141 if ((ret->dlhandle = dlopen(path, RTLD_NOW)) == NULL) in sshsk_open()
143 if ((ret->sk_api_version = dlsym(ret->dlhandle, in sshsk_open()
158 if ((ret->sk_enroll = dlsym(ret->dlhandle, "sk_enroll")) == NULL) { in sshsk_open()
163 if ((ret->sk_sign = dlsym(ret->dlhandle, "sk_sign")) == NULL) { in sshsk_open()
168 if ((ret->sk_load_resident_keys = dlsym(ret->dlhandle, in sshsk_open()
/freebsd/contrib/wpa/src/eap_server/
H A Dtncs.c41 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()