Searched refs:timerCache_ (Results 1 – 2 of 2) sorted by relevance
116 auto it = timerCache_.find(key); in SetTimer()117 if (it != timerCache_.end()) { in SetTimer()132 if (it != timerCache_.end()) { in SetTimer()134 timerCache_.erase(key); in SetTimer()148 timerCache_.emplace(key, timerId); in SetTimer()206 auto it = timerCache_.find(key); in RemoveTimer()207 if (it != timerCache_.end()) { in RemoveTimer()211 timerCache_.erase(key); in RemoveTimer()223 auto it = timerCache_.begin(); in ClearTimer()224 while (it != timerCache_.end()) { in ClearTimer()[all …]
52 std::map<Key, int64_t> timerCache_; variable