Searched refs:dlhandle (Results 1 – 6 of 6) sorted by relevance
| /trueos/contrib/apr-util/misc/ |
| HD | apu_dso.c | 116 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);
|
| /trueos/usr.sbin/keyserv/ |
| HD | crypt_server.c | 167 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);
|
| /trueos/contrib/wpa/src/eap_peer/ |
| HD | tncc.c | 107 void *dlhandle; /* from dlopen() */ member 325 void *handle = imc->dlhandle; in tncc_imc_resolve_funcs() 456 imc->dlhandle = LoadLibrary(lib); in tncc_load_imc() 460 imc->dlhandle = LoadLibrary(imc->path); in tncc_load_imc() 462 if (imc->dlhandle == NULL) { in tncc_load_imc() 468 imc->dlhandle = dlopen(imc->path, RTLD_LAZY); in tncc_load_imc() 469 if (imc->dlhandle == NULL) { in tncc_load_imc() 496 if (imc->dlhandle) { in tncc_unload_imc() 498 FreeLibrary(imc->dlhandle); in tncc_unload_imc() 500 dlclose(imc->dlhandle); in tncc_unload_imc()
|
| /trueos/contrib/wpa/src/eap_server/ |
| HD | tncs.c | 107 void *dlhandle; /* from dlopen() */ member 403 void *handle = imv->dlhandle; in tncs_imv_resolve_funcs() 515 imv->dlhandle = dlopen(imv->path, RTLD_LAZY); in tncs_load_imv() 516 if (imv->dlhandle == NULL) { in tncs_load_imv() 548 if (imv->dlhandle) in tncs_unload_imv() 549 dlclose(imv->dlhandle); in tncs_unload_imv()
|
| /trueos/contrib/ofed/libibverbs/src/ |
| HD | init.c | 233 void *dlhandle; in load_driver() local 248 dlhandle = dlopen(so_name, RTLD_NOW); in load_driver() 249 if (!dlhandle) { in load_driver()
|
| /trueos/contrib/gdb/gdb/ |
| HD | sol-thread.c | 1656 void *dlhandle; in _initialize_sol_thread() local 1661 dlhandle = dlopen ("libthread_db.so.1", RTLD_NOW); in _initialize_sol_thread() 1662 if (!dlhandle) in _initialize_sol_thread() 1666 if (!(p_##X = dlsym (dlhandle, #X))) \ in _initialize_sol_thread() 1713 if (dlhandle) in _initialize_sol_thread() 1714 dlclose (dlhandle); in _initialize_sol_thread()
|