Home
last modified time | relevance | path

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

/frameworks/base/services/backup/java/com/android/server/backup/remote/
DRemoteCall.java64 private final long mTimeoutMs; field in RemoteCall
88 mTimeoutMs = timeoutMs; in RemoteCall()
119 if (mTimeoutMs == 0L) { in call()
122 Handler.getMain().postDelayed(this::timeOut, mTimeoutMs); in call()
/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
DOneTimeSettingsListener.java41 private final int mTimeoutMs; field in OneTimeSettingsListener
48 mTimeoutMs = timeoutMs; in OneTimeSettingsListener()
72 final boolean updated = mLatch.await(mTimeoutMs, TimeUnit.MILLISECONDS); in assertCalled()
75 "Settings " + mKey + " not called in " + mTimeoutMs + "ms"); in assertCalled()
/frameworks/base/core/java/com/android/internal/util/
DSyncResultReceiver.java40 private final int mTimeoutMs; field in SyncResultReceiver
50 mTimeoutMs = timeoutMs; in SyncResultReceiver()
55 if (!mLatch.await(mTimeoutMs, TimeUnit.MILLISECONDS)) { in waitResult()
56 throw new TimeoutException("Not called in " + mTimeoutMs + "ms"); in waitResult()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/onehanded/
DOneHandedTimeoutHandler.java42 private long mTimeoutMs = TimeUnit.SECONDS.toMillis(mTimeout); field in OneHandedTimeoutHandler
76 mTimeoutMs = TimeUnit.SECONDS.toMillis(mTimeout); in setTimeout()
96 mMainExecutor.executeDelayed(mTimeoutRunnable, mTimeoutMs); in resetTimer()
/frameworks/base/services/contentcapture/java/com/android/server/contentprotection/
DContentProtectionAllowlistManager.java49 private final long mTimeoutMs; field in ContentProtectionAllowlistManager
79 mTimeoutMs = timeoutMs; in ContentProtectionAllowlistManager()
148 mUpdatePendingUntil = Instant.now().plusMillis(mTimeoutMs); in handlePackagesChanged()
/frameworks/base/core/java/com/android/internal/widget/
DLockPatternUtils.java272 private int mTimeoutMs; field in LockPatternUtils.RequestThrottledException
275 mTimeoutMs = timeoutMs; in RequestThrottledException()
284 return mTimeoutMs; in getTimeoutMs()
/frameworks/base/services/core/java/com/android/server/media/projection/
DMediaProjectionManagerService.java986 private long mTimeoutMs = mDefaultTimeoutMs; field in MediaProjectionManagerService.MediaProjection
1227 final boolean hasTimedOut = curMs - mCreateTimeMs > mTimeoutMs; in isValid()