Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/data_share/common/
H A Dscheduler_manager.cpp116 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 …]
H A Dscheduler_manager.h52 std::map<Key, int64_t> timerCache_; variable