Home
last modified time | relevance | path

Searched refs:currentTimer (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/multimodalinput/input/intention/scheduler/timer_manager/src/
H A Dtimer_manager.cpp276 auto currentTimer = std::move(*tIter); in ProcessTimersInternal() local
278 ++currentTimer->callbackCount; in ProcessTimersInternal()
279 …if ((currentTimer->repeatCount >= 1) && (currentTimer->callbackCount >= currentTimer->repeatCount)… in ProcessTimersInternal()
280 currentTimer->callback(); in ProcessTimersInternal()
283 … if (!AddInt64(currentTimer->nextCallTime, currentTimer->intervalMs, currentTimer->nextCallTime)) { in ProcessTimersInternal()
287 auto callback = currentTimer->callback; in ProcessTimersInternal()
288 InsertTimerInternal(currentTimer); in ProcessTimersInternal()
/ohos5.0/base/msdp/device_status/intention/scheduler/timer_manager/src/
H A Dtimer_manager.cpp276 auto currentTimer = std::move(*tIter); in ProcessTimersInternal() local
278 ++currentTimer->callbackCount; in ProcessTimersInternal()
279 …if ((currentTimer->repeatCount >= 1) && (currentTimer->callbackCount >= currentTimer->repeatCount)… in ProcessTimersInternal()
280 currentTimer->callback(); in ProcessTimersInternal()
283 … if (!AddInt64(currentTimer->nextCallTime, currentTimer->intervalMs, currentTimer->nextCallTime)) { in ProcessTimersInternal()
287 auto callback = currentTimer->callback; in ProcessTimersInternal()
288 InsertTimerInternal(currentTimer); in ProcessTimersInternal()
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/
H A Dtimer_module.cpp229 TimerList::TimerNode* currentTimer = timerList->GetTimer(*timerId); in Task() local
230 if ((currentTimer != nullptr) && (!funcArgs->repeated)) { in Task()