Home
last modified time | relevance | path

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

/ohos5.0/foundation/resourceschedule/work_scheduler/services/native/src/
H A Dwork_sched_data_manager.cpp76 auto iter = activeGroupMap_.find(key); in FindGroup()
77 if (iter != activeGroupMap_.end()) { in FindGroup()
89 auto iter = activeGroupMap_.find(key); in AddGroup()
90 if (iter != activeGroupMap_.end()) { in AddGroup()
91 activeGroupMap_.erase(iter); in AddGroup()
93 activeGroupMap_.emplace(key, appGroup); in AddGroup()
94 WS_HILOGI("activeGroupMap_ size %{public}d", static_cast<int32_t>(activeGroupMap_.size())); in AddGroup()
101 auto iter = activeGroupMap_.find(key); in ClearGroup()
102 if (iter != activeGroupMap_.end()) { in ClearGroup()
103 activeGroupMap_.erase(iter); in ClearGroup()
[all …]
/ohos5.0/foundation/resourceschedule/work_scheduler/services/native/include/
H A Dwork_sched_data_manager.h51 std::unordered_map<std::string, int32_t> activeGroupMap_; variable