Searched refs:dlhandle (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/apr-util/misc/
H A Dapu_dso.c116 apr_dso_handle_t *dlhandle = NULL; local
165 rv = apr_dso_load(&dlhandle, path, global);
167 *dlhandleptr = dlhandle;
184 rv = apr_dso_load(&dlhandle, path, global);
186 *dlhandleptr = dlhandle;
197 rv = apr_dso_sym(dsoptr, dlhandle, modsym);
199 apr_dso_unload(dlhandle);
/freebsd-11-stable/usr.sbin/keyserv/
H A Dcrypt_server.c167 static void *dlhandle; variable
189 if ((dlhandle = dlopen(dlpath, 0444)) != NULL)
190 _my_crypt = (int (*)())dlsym(dlhandle, "_des_crypt");
193 if (dlhandle != NULL)
194 dlclose(dlhandle);
/freebsd-11-stable/contrib/wpa/src/eap_peer/
H A Dtncc.c60 void *dlhandle; /* from dlopen() */ member in struct:tnc_if_imc
277 void *handle = imc->dlhandle;
408 imc->dlhandle = LoadLibrary(lib);
412 imc->dlhandle = LoadLibrary(imc->path);
414 if (imc->dlhandle == NULL) {
420 imc->dlhandle = dlopen(imc->path, RTLD_LAZY);
421 if (imc->dlhandle == NULL) {
448 if (imc->dlhandle) {
450 FreeLibrary(imc->dlhandle);
452 dlclose(imc->dlhandle);
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dsol-thread.c1663 void *dlhandle;
1668 dlhandle = dlopen ("libthread_db.so.1", RTLD_NOW);
1669 if (!dlhandle)
1673 if (!(p_##X = dlsym (dlhandle, #X))) \
1720 if (dlhandle)
1721 dlclose (dlhandle);
1656 void *dlhandle; local
/freebsd-11-stable/contrib/wpa/src/eap_server/
H A Dtncs.c41 void *dlhandle; /* from dlopen() */ member in struct:tnc_if_imv
335 void *handle = imv->dlhandle;
447 imv->dlhandle = dlopen(imv->path, RTLD_LAZY);
448 if (imv->dlhandle == NULL) {
480 if (imv->dlhandle)
481 dlclose(imv->dlhandle);

Completed in 95 milliseconds