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

  /system/chre/platform/linux/
platform_nanoapp.cc 81 return (mIsStatic || mDsoHandle != nullptr);
100 CHRE_ASSERT_LOG(mDsoHandle == nullptr, "Re-opening nanoapp");
103 mDsoHandle = dlopen(mFilename.c_str(), RTLD_NOW | RTLD_GLOBAL);
104 if (mDsoHandle == nullptr) {
109 dlsym(mDsoHandle, CHRE_NSL_DSO_NANOAPP_INFO_SYMBOL_NAME));
131 if (mDsoHandle != nullptr) {
132 if (dlclose(mDsoHandle) != 0) {
135 mDsoHandle = nullptr;
  /system/chre/platform/linux/include/chre/target_platform/
platform_nanoapp_base.h 63 void *mDsoHandle = nullptr;
  /system/chre/platform/slpi/
platform_nanoapp.cc 128 || mDsoHandle != nullptr);
136 if (mDsoHandle != nullptr) {
137 if (dlclose(mDsoHandle) != 0) {
140 mDsoHandle = nullptr;
168 CHRE_ASSERT_LOG(mDsoHandle == nullptr, "Re-opening nanoapp");
176 mDsoHandle = dlopenbuf(
179 if (mDsoHandle == nullptr) {
183 dlsym(mDsoHandle, CHRE_NSL_DSO_NANOAPP_INFO_SYMBOL_NAME));
206 CHRE_ASSERT_LOG(mDsoHandle == nullptr, "Re-opening nanoapp");
209 mDsoHandle = dlopen(mFilename, RTLD_NOW)
    [all...]
  /system/chre/platform/slpi/include/chre/target_platform/
platform_nanoapp_base.h 108 void *mDsoHandle = nullptr;

Completed in 272 milliseconds