Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/dispatcher/
DInputDispatcher.cpp468 const nsecs_t nextAnrCheck = processAnrsLocked(); in dispatchOnce() local
469 nextWakeupTime = std::min(nextWakeupTime, nextAnrCheck); in dispatchOnce()
491 nsecs_t nextAnrCheck = LONG_LONG_MAX; in processAnrsLocked() local
502 nextAnrCheck = *mNoFocusedWindowTimeoutTime; in processAnrsLocked()
507 nextAnrCheck = std::min(nextAnrCheck, mAnrTracker.firstTimeout()); in processAnrsLocked()
508 if (currentTime < nextAnrCheck) { // most likely scenario in processAnrsLocked()
509 return nextAnrCheck; // everything is normal. Let's check again at nextAnrCheck in processAnrsLocked()
516 return nextAnrCheck; in processAnrsLocked()