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

  /external/bluetooth/bluedroid/hci/src/
bt_hw.c 209 void *dlhandle; local
211 dlhandle = dlopen("libbt-vendor.so", RTLD_NOW);
212 if (!dlhandle)
218 bt_vnd_if = (bt_vendor_interface_t *) dlsym(dlhandle, "BLUETOOTH_VENDOR_LIB_INTERFACE");
  /hardware/ril/rild/
rild.c 104 void *dlHandle;
245 dlHandle = dlopen(rilLibPath, RTLD_NOW);
247 if (dlHandle == NULL) {
254 rilInit = (const RIL_RadioFunctions *(*)(const struct RIL_Env *, int, char **))dlsym(dlHandle, "RIL_Init");
  /external/elfutils/libebl/
eblclosebackend.c 69 if (ebl->dlhandle != NULL)
70 (void) dlclose (ebl->dlhandle);
libeblP.h 84 void *dlhandle; member in struct:ebl
eblopenbackend.c 377 result->dlhandle = h;
393 result->dlhandle = NULL;
402 result->dlhandle = NULL;
  /frameworks/base/core/jni/
android_app_NativeActivity.cpp 108 dlhandle = _dlhandle;
127 if (dlhandle != NULL) {
129 // up and only keep one open dlhandle per proc, since there
131 //dlclose(dlhandle);
145 void* dlhandle; member in struct:android::NativeCode
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 107 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...]
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 107 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 296 milliseconds