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

/freebsd-10-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-10-stable/usr.sbin/keyserv/
H A Dcrypt_server.c167 static void *dlhandle; variable
188 if (dlpath != NULL && (dlhandle = dlopen(dlpath, 0444)) != NULL)
189 _my_crypt = (int (*)())dlsym(dlhandle, "_des_crypt");
192 if (dlhandle != NULL)
193 dlclose(dlhandle);
/freebsd-10-stable/contrib/wpa/src/eap_peer/
H A Dtncc.c107 void *dlhandle; /* from dlopen() */ member in struct:tnc_if_imc
325 void *handle = imc->dlhandle;
456 imc->dlhandle = LoadLibrary(lib);
460 imc->dlhandle = LoadLibrary(imc->path);
462 if (imc->dlhandle == NULL) {
468 imc->dlhandle = dlopen(imc->path, RTLD_LAZY);
469 if (imc->dlhandle == NULL) {
496 if (imc->dlhandle) {
498 FreeLibrary(imc->dlhandle);
500 dlclose(imc->dlhandle);
[all...]
/freebsd-10-stable/contrib/ofed/libibverbs/src/
H A Dinit.c233 void *dlhandle; local
248 dlhandle = dlopen(so_name, RTLD_NOW);
249 if (!dlhandle) {
/freebsd-10-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-10-stable/contrib/wpa/src/eap_server/
H A Dtncs.c107 void *dlhandle; /* from dlopen() */ member in struct:tnc_if_imv
403 void *handle = imv->dlhandle;
515 imv->dlhandle = dlopen(imv->path, RTLD_LAZY);
516 if (imv->dlhandle == NULL) {
548 if (imv->dlhandle)
549 dlclose(imv->dlhandle);

Completed in 184 milliseconds