Home
last modified time | relevance | path

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

/base/hiviewdfx/hicollie/frameworks/native/
Dwatchdog_task.h43 nextTickTime(0), in WatchdogTask()
51 return (this->nextTickTime > obj.nextTickTime);
72 uint64_t nextTickTime; variable
Dwatchdog_task.cpp41 nextTickTime = GetCurrentTickMillseconds(); in WatchdogTask()
52 nextTickTime = GetCurrentTickMillseconds() + delay; in WatchdogTask()
63 nextTickTime = GetCurrentTickMillseconds() + timeout; in WatchdogTask()
99 if ((checkInterval != 0) && (now - nextTickTime > (resetRatio * checkInterval))) { in Run()
102 now, nextTickTime, checkInterval); in Run()
103 nextTickTime = now; in Run()
Dwatchdog_inner.cpp281 if (queuedTask.nextTickTime > now) { in FetchNextTask()
282 return queuedTask.nextTickTime - now; in FetchNextTask()
298 task.nextTickTime = task.nextTickTime + task.checkInterval; in ReInsertTaskIfNeed()