HomeSort by relevance Sort by last modified time
    Searched defs:dlhandle (Results 1 - 4 of 4) sorted by null

  /external/elfutils/libebl/
libebl.h 104 void *dlhandle; member in struct:ebl
  /external/clearsilver/mod_ecs/
mod_ecs.c 368 static void dummy (ap_os_dso_handle_t dlhandle)
372 static void slib_cleanup (ap_os_dso_handle_t dlhandle)
375 if ((cleanupFunc = (CleanupFunc)ap_os_dso_sym(dlhandle, ECSCleanUp))) {
378 ap_os_dso_unload(dlhandle);
380 fprintf(stderr, "Unloading handle %d", dlhandle);
410 ap_os_dso_handle_t dlhandle; local
413 if ((dlhandle = ap_os_dso_load(arg)) == NULL) {
417 if ((init_func = (InitFunc)ap_os_dso_sym(dlhandle, ECSInit))) {
421 ap_register_cleanup (cls->deplibs->pool, dlhandle, slib_cleanup, slib_cleanup);
425 entry->dlib = dlhandle;
433 ap_os_dso_handle_t dlhandle; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
tncc.c 113 void *dlhandle; /* from dlopen() */ member in struct:tnc_if_imc
331 void *handle = imc->dlhandle;
462 imc->dlhandle = LoadLibrary(lib);
466 imc->dlhandle = LoadLibrary(imc->path);
468 if (imc->dlhandle == NULL) {
474 imc->dlhandle = dlopen(imc->path, RTLD_LAZY);
475 if (imc->dlhandle == NULL) {
502 if (imc->dlhandle) {
504 FreeLibrary(imc->dlhandle);
506 dlclose(imc->dlhandle);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
tncs.c 113 void *dlhandle; /* from dlopen() */ member in struct:tnc_if_imv
409 void *handle = imv->dlhandle;
521 imv->dlhandle = dlopen(imv->path, RTLD_LAZY);
522 if (imv->dlhandle == NULL) {
554 if (imv->dlhandle)
555 dlclose(imv->dlhandle);

Completed in 1976 milliseconds