Searched refs:activeGroupMap_ (Results 1 – 2 of 2) sorted by relevance
76 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 …]
51 std::unordered_map<std::string, int32_t> activeGroupMap_; variable