Searched refs:timeoutTime (Results 1 – 13 of 13) sorted by relevance
/frameworks/native/services/inputflinger/dispatcher/ |
D | AnrTracker.cpp | 26 void AnrTracker::insert(nsecs_t timeoutTime, sp<IBinder> token) { in insert() argument 27 mAnrTimeouts.insert(std::make_pair(timeoutTime, std::move(token))); in insert() 34 void AnrTracker::erase(nsecs_t timeoutTime, const sp<IBinder>& token) { in erase() argument 35 auto pair = std::make_pair(timeoutTime, token); in erase()
|
D | AnrTracker.h | 31 void insert(nsecs_t timeoutTime, sp<IBinder> token); 32 void erase(nsecs_t timeoutTime, const sp<IBinder>& token);
|
D | Entry.h | 228 nsecs_t timeoutTime; member
|
D | InputDispatcher.cpp | 551 if (dispatchEntry->timeoutTime < currentTime) { in isConnectionResponsive() 3797 dispatchEntry->timeoutTime = currentTime + timeout.count(); in startDispatchCycleLocked() 3918 const nsecs_t timeoutTime = dispatchEntry->timeoutTime; in startDispatchCycleLocked() local 3923 mAnrTracker.insert(timeoutTime, connection->getToken()); in startDispatchCycleLocked() 6418 mAnrTracker.erase(dispatchEntry->timeoutTime, connectionToken); in doDispatchCycleFinishedCommand()
|
/frameworks/av/media/tests/benchmark/src/native/common/utils/ |
D | Timers.cpp | 49 int toMillisecondTimeoutDelay(nsecs_t referenceTime, nsecs_t timeoutTime) { in toMillisecondTimeoutDelay() argument 51 if (timeoutTime > referenceTime) { in toMillisecondTimeoutDelay() 52 uint64_t timeoutDelay = uint64_t(timeoutTime - referenceTime); in toMillisecondTimeoutDelay()
|
D | Timers.h | 113 int toMillisecondTimeoutDelay(nsecs_t referenceTime, nsecs_t timeoutTime);
|
/frameworks/base/ravenwood/bivalenttest/test/com/android/ravenwoodtest/bivalenttest/ |
D | RavenwoodNativeAllocationRegistryTest.java | 70 final long timeoutTime = mRavenwoodRule.realCurrentTimeMillis() + 10_000; in testNativeAllocationRegistry() local 92 if (mRavenwoodRule.realCurrentTimeMillis() > timeoutTime) { in testNativeAllocationRegistry()
|
/frameworks/native/services/inputflinger/docs/ |
D | anr.md | 18 …y in the `waitQueue`. If the entry sits in the `waitQueue` past `entry.timeoutTime`, we trigger an… 23 …timeoutTime` fields are populated. The `deliveryTime` is the time that the event is delivered to t… 27 The `timeoutTime` field of the `DispatchEntry` is needed because the window associated with a speci…
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/onehanded/ |
D | OneHandedTimeoutHandler.java | 64 void onTimeout(int timeoutTime); in onTimeout() argument
|
D | OneHandedController.java | 561 mTimeoutHandler.registerTimeoutListener(timeoutTime -> stopOneHanded(
|
/frameworks/base/core/tests/coretests/src/android/hardware/display/ |
D | VirtualDisplayTest.java | 436 long timeoutTime = SystemClock.uptimeMillis() + timeoutMillis; in waitForColor() local 440 if (now >= timeoutTime) { in waitForColor() 444 wait(timeoutTime - now); in waitForColor()
|
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/ |
D | DownloadManagerBaseTest.java | 297 long timeoutTime = SystemClock.elapsedRealtime() + DEFAULT_MAX_WAIT_TIME; in setWiFiStateOn() local 304 if (SystemClock.elapsedRealtime() > timeoutTime) { in setWiFiStateOn()
|
/frameworks/base/core/tests/coretests/src/android/app/ |
D | DownloadManagerBaseTest.java | 529 long timeoutTime = SystemClock.elapsedRealtime() + DEFAULT_MAX_WAIT_TIME; in setWiFiStateOn() local 536 if (SystemClock.elapsedRealtime() > timeoutTime) { in setWiFiStateOn()
|