Home
last modified time | relevance | path

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

/aosp14/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
H A 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()
/aosp14/frameworks/base/services/backup/java/com/android/server/backup/remote/
H A 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()
/aosp14/frameworks/base/core/java/com/android/internal/util/
H A 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()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/onehanded/
H A 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()
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java273 private int mTimeoutMs; field in LockPatternUtils.RequestThrottledException
276 mTimeoutMs = timeoutMs; in RequestThrottledException()
285 return mTimeoutMs; in getTimeoutMs()
/aosp14/frameworks/base/services/core/java/com/android/server/media/projection/
H A DMediaProjectionManagerService.java881 private long mTimeoutMs = mDefaultTimeoutMs; field in MediaProjectionManagerService.MediaProjection
1120 final boolean hasTimedOut = curMs - mCreateTimeMs > mTimeoutMs; in isValid()