Home
last modified time | relevance | path

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

/base/msdp/device_status/services/interaction/coordination/src/
Ddistributed_input_adapter.cpp131 …if ((callbackMap_.find(type) == callbackMap_.end()) || (watchingMap_.find(type) == watchingMap_.en… in AddTimer()
135 if (watchingMap_[type].times == 0) { in AddTimer()
137 watchingMap_[type].times++; in AddTimer()
147 watchingMap_[type].timerId = timerId; in AddTimer()
148 watchingMap_[type].times = 0; in AddTimer()
154 if (watchingMap_.find(type) != watchingMap_.end()) { in RemoveTimer()
157 context->GetTimerManager().RemoveTimer(watchingMap_[type].timerId); in RemoveTimer()
158 watchingMap_.erase(type); in RemoveTimer()
/base/msdp/device_status/services/interaction/coordination/include/
Ddistributed_input_adapter.h147 std::map<CallbackType, TimerInfo> watchingMap_; variable