Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/dispatcher/
DAnrTracker.cpp26 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()
DAnrTracker.h31 void insert(nsecs_t timeoutTime, sp<IBinder> token);
32 void erase(nsecs_t timeoutTime, const sp<IBinder>& token);
DEntry.h228 nsecs_t timeoutTime; member
DInputDispatcher.cpp551 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/
DTimers.cpp49 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()
DTimers.h113 int toMillisecondTimeoutDelay(nsecs_t referenceTime, nsecs_t timeoutTime);
/frameworks/base/ravenwood/bivalenttest/test/com/android/ravenwoodtest/bivalenttest/
DRavenwoodNativeAllocationRegistryTest.java70 final long timeoutTime = mRavenwoodRule.realCurrentTimeMillis() + 10_000; in testNativeAllocationRegistry() local
92 if (mRavenwoodRule.realCurrentTimeMillis() > timeoutTime) { in testNativeAllocationRegistry()
/frameworks/native/services/inputflinger/docs/
Danr.md18 …y in the `waitQueue`. If the entry sits in the `waitQueue` past `entry.timeoutTime`, we trigger an…
23timeoutTime` 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/
DOneHandedTimeoutHandler.java64 void onTimeout(int timeoutTime); in onTimeout() argument
DOneHandedController.java561 mTimeoutHandler.registerTimeoutListener(timeoutTime -> stopOneHanded(
/frameworks/base/core/tests/coretests/src/android/hardware/display/
DVirtualDisplayTest.java436 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/
DDownloadManagerBaseTest.java297 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/
DDownloadManagerBaseTest.java529 long timeoutTime = SystemClock.elapsedRealtime() + DEFAULT_MAX_WAIT_TIME; in setWiFiStateOn() local
536 if (SystemClock.elapsedRealtime() > timeoutTime) { in setWiFiStateOn()