Home
last modified time | relevance | path

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

/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/onehanded/
H A DOneHandedTimeoutHandler.java43 private final Runnable mTimeoutRunnable = this::onStop; field in OneHandedTimeoutHandler
84 mMainExecutor.removeCallbacks(mTimeoutRunnable); in removeTimer()
96 mMainExecutor.executeDelayed(mTimeoutRunnable, mTimeoutMs); in resetTimer()
111 return mMainExecutor.hasCallback(mTimeoutRunnable); in hasScheduledTimeout()
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DRemoteDisplayChangeController.java50 private final Runnable mTimeoutRunnable = this::onContinueTimedOut; field in RemoteDisplayChangeController
101 mService.mH.removeCallbacks(mTimeoutRunnable); in performRemoteDisplayChange()
102 mService.mH.postDelayed(mTimeoutRunnable, REMOTE_DISPLAY_CHANGE_TIMEOUT_MS); in performRemoteDisplayChange()
154 mService.mH.removeCallbacks(mTimeoutRunnable); in continueDisplayChange()
H A DAsyncRotationController.java68 private Runnable mTimeoutRunnable; field in AsyncRotationController
229 if (mTimeoutRunnable == null && !mDisplayContent.hasTopFixedRotationLaunchingApp() in updateTargetWindows()
301 if (mTimeoutRunnable != null) { in onAllCompleted()
302 mService.mH.removeCallbacks(mTimeoutRunnable); in onAllCompleted()
398 if (mTimeoutRunnable == null) { in scheduleTimeout()
399 mTimeoutRunnable = () -> { in scheduleTimeout()
409 mService.mH.postDelayed(mTimeoutRunnable, in scheduleTimeout()
H A DRemoteAnimationController.java75 private final Runnable mTimeoutRunnable = () -> cancelAnimation("timeoutRunnable"); field in RemoteAnimationController
164 mHandler.postDelayed(mTimeoutRunnable, in goodToGo()
305 mHandler.removeCallbacks(mTimeoutRunnable);
/aosp14/frameworks/base/core/java/com/android/internal/util/
H A DLatencyTracker.java674 private Runnable mTimeoutRunnable; field in LatencyTracker.Session
699 mTimeoutRunnable = () -> { in begin()
704 .postDelayed(mTimeoutRunnable, TimeUnit.SECONDS.toMillis(15)); in begin()
710 BackgroundThread.getHandler().removeCallbacks(mTimeoutRunnable); in end()
711 mTimeoutRunnable = null; in end()
717 BackgroundThread.getHandler().removeCallbacks(mTimeoutRunnable); in cancel()
718 mTimeoutRunnable = null; in cancel()
/aosp14/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
H A DCompanionDeviceDiscoveryService.java106 private final Runnable mTimeoutRunnable = this::timeout; field in CompanionDeviceDiscoveryService
248 Handler.getMain().removeCallbacks(mTimeoutRunnable); in stopDiscoveryAndFinish()
391 Handler.getMain().postDelayed(mTimeoutRunnable, timeout); in scheduleTimeout()