Searched refs:mPrebuiltGraphInstance (Results 1 – 2 of 2) sorted by relevance
42 mPrebuiltGraphInstance->mFn##name = \43 dlsym(mPrebuiltGraphInstance->mHandle, func_name.c_str()); \44 if (mPrebuiltGraphInstance->mFn##name == nullptr) { \51 LocalPrebuiltGraph* LocalPrebuiltGraph::mPrebuiltGraphInstance = nullptr; member in android::automotive::computepipe::graph::LocalPrebuiltGraph182 if (mPrebuiltGraphInstance == nullptr) { in GetPrebuiltGraphFromLibrary()183 mPrebuiltGraphInstance = new LocalPrebuiltGraph(); in GetPrebuiltGraphFromLibrary()185 if (mPrebuiltGraphInstance->mGraphState.load() != PrebuiltGraphState::UNINITIALIZED) { in GetPrebuiltGraphFromLibrary()186 return mPrebuiltGraphInstance; in GetPrebuiltGraphFromLibrary()188 mPrebuiltGraphInstance->mHandle = dlopen(prebuilt_library.c_str(), RTLD_NOW); in GetPrebuiltGraphFromLibrary()190 if (mPrebuiltGraphInstance->mHandle) { in GetPrebuiltGraphFromLibrary()[all …]
117 static LocalPrebuiltGraph* mPrebuiltGraphInstance; variable