Home
last modified time | relevance | path

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

/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/source/collect/
H A Ddevice_status_collect_manager.cpp45 collectPluginMap_[PARAM] = deviceParamCollect; in Init()
62 collectPluginMap_[TIMED_EVENT] = timedCollect; in Init()
205 if (collectPluginMap_.count(ev1.eventId) == 0) { in CheckExtraMessages()
209 if (collectPluginMap_[ev1.eventId] == nullptr) { in CheckExtraMessages()
221 for (auto& iter : collectPluginMap_) { in UnInit()
226 collectPluginMap_.clear(); in UnInit()
235 for (auto& iter : collectPluginMap_) { in CleanFfrt()
247 for (auto& iter : collectPluginMap_) { in SetFfrt()
264 for (auto& iter : collectPluginMap_) { in StartCollect()
306 if (collectPluginMap_.count(eventId) == 0) { in IsExistInPluginMap()
[all …]
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/src/
H A Ddevice_status_collect_manager_test.cpp202 EXPECT_EQ(true, collect->collectPluginMap_.empty());
216 EXPECT_EQ(true, collect->collectPluginMap_.empty());
303 collect->collectPluginMap_[MOCK_PLUGIN] = nullptr;
378 collect->collectPluginMap_.clear();
393 collect->collectPluginMap_.clear();
424 collect->collectPluginMap_.clear();
454 collect->collectPluginMap_.clear();
722 collect->collectPluginMap_.clear();
736 collect->collectPluginMap_.clear();
752 collect->collectPluginMap_.clear();
[all …]
H A Dsystem_ability_mgr_new_test.cpp405 collectManager->collectPluginMap_.clear();
426 collectManager->collectPluginMap_.clear();
427 collectManager->collectPluginMap_[COMMON_EVENT] = commonEventCollect;
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/include/collect/
H A Ddevice_status_collect_manager.h72 std::map<int32_t, sptr<ICollectPlugin>> collectPluginMap_; variable