Home | History | Annotate | Download | only in HAL

Lines Matching refs:mHandle

57                                         mHandle(NULL),
71 mHandle = dlopen("/vendor/lib/libthermalclient.so", RTLD_NOW);
72 if (!mHandle) {
79 *(void **)&mRegister = dlsym(mHandle, "thermal_client_register_callback");
87 *(void **)&mUnregister = dlsym(mHandle, "thermal_client_unregister_callback");
122 dlclose(mHandle);
123 mHandle = NULL;
142 if (mHandle)
143 dlclose(mHandle);
145 mHandle = NULL;