Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/onehanded/
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()
/frameworks/base/services/core/java/com/android/server/wm/
DRemoteDisplayChangeController.java52 private final Runnable mTimeoutRunnable = this::onContinueTimedOut; field in RemoteDisplayChangeController
107 mService.mH.removeCallbacks(mTimeoutRunnable); in performRemoteDisplayChange()
108 mService.mH.postDelayed(mTimeoutRunnable, REMOTE_DISPLAY_CHANGE_TIMEOUT_MS); in performRemoteDisplayChange()
176 mService.mH.removeCallbacks(mTimeoutRunnable); in continueDisplayChange()
DAsyncRotationController.java68 private Runnable mTimeoutRunnable; field in AsyncRotationController
236 if ((mTimeoutRunnable == null || !mIsStartTransactionPrepared) in updateTargetWindows()
323 if (mTimeoutRunnable != null) { in onAllCompleted()
324 mService.mH.removeCallbacks(mTimeoutRunnable); in onAllCompleted()
420 if (mTimeoutRunnable == null) { in scheduleTimeout()
421 mTimeoutRunnable = () -> { in scheduleTimeout()
452 mService.mH.postDelayed(mTimeoutRunnable, in scheduleTimeout()
DRemoteAnimationController.java75 private final Runnable mTimeoutRunnable = () -> cancelAnimation("timeoutRunnable"); field in RemoteAnimationController
164 mHandler.postDelayed(mTimeoutRunnable, in goodToGo()
305 mHandler.removeCallbacks(mTimeoutRunnable);
/frameworks/base/core/java/com/android/internal/util/
DLatencyTracker.java737 private Runnable mTimeoutRunnable; field in LatencyTracker.Session
762 mTimeoutRunnable = () -> { in begin()
767 .postDelayed(mTimeoutRunnable, TimeUnit.SECONDS.toMillis(15)); in begin()
773 BackgroundThread.getHandler().removeCallbacks(mTimeoutRunnable); in end()
774 mTimeoutRunnable = null; in end()
780 BackgroundThread.getHandler().removeCallbacks(mTimeoutRunnable); in cancel()
781 mTimeoutRunnable = null; in cancel()
/frameworks/opt/car/setupwizard/library/utils/src/com/android/car/setupwizardlib/
DInitialLockSetupClient.java57 private final Runnable mTimeoutRunnable = this::connectionTimeout; field in InitialLockSetupClient
88 mHandler.postDelayed(mTimeoutRunnable, CONNECTION_TIMEOUT_MS); in startConnection()
235 mHandler.removeCallbacks(mTimeoutRunnable); in onServiceConnected()
256 mHandler.removeCallbacks(mTimeoutRunnable); in onNullBinding()
269 mHandler.removeCallbacks(mTimeoutRunnable); in onBindingDied()
/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
DCompanionDeviceDiscoveryService.java108 private final Runnable mTimeoutRunnable = this::timeout; field in CompanionDeviceDiscoveryService
257 Handler.getMain().removeCallbacks(mTimeoutRunnable); in stopDiscoveryAndFinish()
402 Handler.getMain().postDelayed(mTimeoutRunnable, timeout); in scheduleTimeout()