Home
last modified time | relevance | path

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

/ohos5.0/base/hiviewdfx/hicollie/frameworks/native/
H A Dwatchdog_task.h53 nextTickTime(0), in WatchdogTask()
64 return (this->nextTickTime > obj.nextTickTime);
87 uint64_t nextTickTime; variable
H A Dwatchdog_task.cpp57 nextTickTime = GetCurrentTickMillseconds(); in WatchdogTask()
68 nextTickTime = GetCurrentTickMillseconds() + delay; in WatchdogTask()
79 nextTickTime = GetCurrentTickMillseconds() + timeout; in WatchdogTask()
91 nextTickTime = GetCurrentTickMillseconds(); in WatchdogTask()
134 if ((checkInterval != 0) && (now - nextTickTime > (resetRatio * checkInterval))) { in Run()
137 now, nextTickTime, checkInterval); in Run()
138 nextTickTime = now; in Run()
H A Dwatchdog_inner.cpp764 if (queuedTask.nextTickTime > now) { in FetchNextTask()
765 return queuedTask.nextTickTime - now; in FetchNextTask()
781 task.nextTickTime = task.nextTickTime + task.checkInterval; in ReInsertTaskIfNeed()