/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/legacysplitscreen/ |
H A D | ForcedResizableInfoActivityController.java | 48 private final Runnable mTimeoutRunnable = this::showPending; field in ForcedResizableInfoActivityController 82 mMainExecutor.removeCallbacks(mTimeoutRunnable); in onDraggingStart() 116 mMainExecutor.removeCallbacks(mTimeoutRunnable); in showPending() 132 mMainExecutor.removeCallbacks(mTimeoutRunnable); in postTimeout() 133 mMainExecutor.executeDelayed(mTimeoutRunnable, TIMEOUT); in postTimeout()
|
/aosp12/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/ |
H A D | ConnectMobileNetworkTask.java | 42 private Runnable mTimeoutRunnable; field in ConnectMobileNetworkTask 81 mTimeoutRunnable = () -> finishTask(false); in run() 82 mHandler.postDelayed(mTimeoutRunnable, RECONNECT_TIMEOUT_MS); in run() 104 mHandler.removeCallbacks(mTimeoutRunnable); in onNetworkConnected()
|
H A D | AddWifiNetworkTask.java | 59 private Runnable mTimeoutRunnable; field in AddWifiNetworkTask 149 mTimeoutRunnable = () -> finishTask(false); in connectToProvidedNetwork() 150 mHandler.postDelayed(mTimeoutRunnable, RECONNECT_TIMEOUT_MS); in connectToProvidedNetwork() 183 mHandler.removeCallbacks(mTimeoutRunnable); in onNetworkConnected()
|
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/onehanded/ |
H A D | OneHandedTimeoutHandler.java | 43 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()
|
/aosp12/frameworks/base/core/java/com/android/internal/util/ |
H A D | LatencyTracker.java | 410 private Runnable mTimeoutRunnable; field in LatencyTracker.Session 435 mTimeoutRunnable = timeoutAction; in begin() 437 .postDelayed(mTimeoutRunnable, TimeUnit.SECONDS.toMillis(15)); in begin() 443 BackgroundThread.getHandler().removeCallbacks(mTimeoutRunnable); in end() 444 mTimeoutRunnable = null; in end() 449 BackgroundThread.getHandler().removeCallbacks(mTimeoutRunnable); in cancel() 450 mTimeoutRunnable = null; in cancel()
|
/aosp12/packages/services/Car/service/src/com/android/car/pm/ |
H A D | AppBlockingPolicyProxy.java | 60 private final Runnable mTimeoutRunnable = new Runnable() { field in AppBlockingPolicyProxy 90 mHandler.postDelayed(mTimeoutRunnable, TIMEOUT_MS); in connect() 101 mHandler.removeCallbacks(mTimeoutRunnable); in disconnect() 158 mHandler.removeCallbacks(mTimeoutRunnable); in setAppBlockingPolicy()
|
/aosp12/packages/apps/Settings/src/com/android/settings/network/ |
H A D | InternetResetHelper.java | 81 protected final Runnable mTimeoutRunnable = () -> { field in InternetResetHelper 121 mHandlerInjector.removeCallbacks(mTimeoutRunnable); in onDestroy() 217 mHandlerInjector.removeCallbacks(mTimeoutRunnable); in resumePreferences() 239 mHandlerInjector.postDelayed(mTimeoutRunnable, RESTART_TIMEOUT_MS); in restart()
|
/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/setup/ |
H A D | LocationFragment.java | 76 private final Runnable mTimeoutRunnable = field in LocationFragment.ContentFragment 175 mHandler.postDelayed(mTimeoutRunnable, GET_LOCATION_TIMEOUT_MS); in onRequestPermissionsResult() 215 mHandler.removeCallbacks(mTimeoutRunnable); in onPause() 221 mHandler.removeCallbacks(mTimeoutRunnable); in passPostalCode()
|
/aosp12/packages/apps/Settings/src/com/android/settings/biometrics/ |
H A D | BiometricEnrollSidecar.java | 103 private final Runnable mTimeoutRunnable = new Runnable() { field in BiometricEnrollSidecar 145 mHandler.removeCallbacks(mTimeoutRunnable); in startEnrollment() 152 mHandler.removeCallbacks(mTimeoutRunnable); in cancelEnrollment()
|
/aosp12/frameworks/opt/car/setupwizard/library/utils/src/com/android/car/setupwizardlib/ |
H A D | InitialLockSetupClient.java | 57 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()
|
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/ |
H A D | BluetoothAccessoryFragment.java | 412 private final Runnable mTimeoutRunnable = new Runnable() { field in BluetoothAccessoryFragment.UnpairConfirmFragment 453 mHandler.removeCallbacks(mTimeoutRunnable); in onDestroy() 508 mHandler.postDelayed(mTimeoutRunnable, UNPAIR_TIMEOUT); in unpairDevice()
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | RemoteAnimationController.java | 70 private final Runnable mTimeoutRunnable = () -> cancelAnimation("timeoutRunnable"); field in RemoteAnimationController 118 mHandler.postDelayed(mTimeoutRunnable, in goodToGo() 247 mHandler.removeCallbacks(mTimeoutRunnable);
|
/aosp12/packages/apps/Settings/tests/unit/src/com/android/settings/network/ |
H A D | InternetResetHelperTest.java | 279 .isEqualTo(mInternetResetHelper.mTimeoutRunnable); in restart_recoveryAvailable_triggerSubsystemRestart()
|