Home
last modified time | relevance | path

Searched refs:g_hdiConstructorMap (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/drivers/hdf_core/adapter/uhdf2/hdi/src/
H A Dhdi_support.cpp94 static std::map<std::string, HdiImpl> g_hdiConstructorMap; variable
146 auto constructor = g_hdiConstructorMap.find(libName); in LoadHdiImpl()
147 if (constructor != g_hdiConstructorMap.end()) { in LoadHdiImpl()
176 g_hdiConstructorMap.emplace(std::make_pair(libName, std::move(hdiImpl))); in LoadHdiImpl()
194 auto constructor = g_hdiConstructorMap.find(libName); in UnloadHdiImpl()
195 if (constructor != g_hdiConstructorMap.end() && constructor->second.destructor != nullptr) { in UnloadHdiImpl()