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

  /external/elfutils/libebl/
eblclosebackend.c 48 if (ebl->dlhandle != NULL)
49 (void) dlclose (ebl->dlhandle);
libeblP.h 85 void *dlhandle; member in struct:ebl
eblopenbackend.c 360 result->dlhandle = h;
376 result->dlhandle = NULL;
385 result->dlhandle = NULL;
  /external/fio/
ioengines.c 92 void *dlhandle; local
97 dlhandle = dlopen(engine_lib, RTLD_LAZY);
98 if (!dlhandle) {
107 ops = dlsym(dlhandle, engine_lib);
109 ops = dlsym(dlhandle, "ioengine");
118 get_ioengine_t get_ioengine = dlsym(dlhandle, "get_ioengine");
126 dlclose(dlhandle);
130 ops->dlhandle = dlhandle;
184 if (td->io_ops->dlhandle)
    [all...]
ioengine.h 155 void *dlhandle; member in struct:ioengine_ops
  /external/libxml2/os400/dlfcn/
dlfcn.c 1159 void * dlhandle; local
1188 dlhandle = dlopenqsys(&dllinfo);
1191 dlhandle = dlopenqsys(&dllinfo);
1193 dlhandle = dlopenqsys(&dllinfo);
1195 dlhandle = dlopenqsys(&dllinfo);
1198 dlhandle = dlopenqsys(&dllinfo);
1201 dlhandle = dlopenqsys(&dllinfo);
1204 dlhandle = dlopenqsys(&dllinfo);
1206 dlhandle = NULL;
1208 if (!dlhandle && errno
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 60 void *dlhandle; /* from dlopen() */ member in struct:tnc_if_imc
279 void *handle = imc->dlhandle;
410 imc->dlhandle = LoadLibrary(lib);
414 imc->dlhandle = LoadLibrary(imc->path);
416 if (imc->dlhandle == NULL) {
422 imc->dlhandle = dlopen(imc->path, RTLD_LAZY);
423 if (imc->dlhandle == NULL) {
450 if (imc->dlhandle) {
452 FreeLibrary(imc->dlhandle);
454 dlclose(imc->dlhandle);
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 41 void *dlhandle; /* from dlopen() */ member in struct:tnc_if_imv
337 void *handle = imv->dlhandle;
449 imv->dlhandle = dlopen(imv->path, RTLD_LAZY);
450 if (imv->dlhandle == NULL) {
482 if (imv->dlhandle)
483 dlclose(imv->dlhandle);
  /toolchain/binutils/binutils-2.25/ld/
plugin.c 62 void *dlhandle; member in struct:plugin
198 newplug->dlhandle = dlopen (plugin, RTLD_NOW);
199 if (!newplug->dlhandle)
817 onloadfn = (ld_plugin_onload) dlsym (curplug->dlhandle, "onload");
819 onloadfn = (ld_plugin_onload) dlsym (curplug->dlhandle, "_onload");
946 dlclose (curplug->dlhandle);
  /frameworks/base/core/jni/
android_app_NativeActivity.cpp 121 dlhandle = _dlhandle;
145 if (dlhandle != NULL) {
147 // up and only keep one open dlhandle per proc, since there
149 //dlclose(dlhandle);
163 void* dlhandle; member in struct:android::NativeCode

Completed in 892 milliseconds