Home
last modified time | relevance | path

Searched refs:mTimeout (Results 1 – 16 of 16) sorted by relevance

/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DRetryableException.java27 private final Timeout mTimeout; field in RetryableException
43 this.mTimeout = timeout; in RetryableException()
48 this.mTimeout = timeout; in RetryableException()
54 this.mTimeout = timeout; in RetryableException()
59 return mTimeout; in getTimeout()
65 return mTimeout == null ? superMessage : superMessage + " (timeout=" + mTimeout + ")"; in getMessage()
DWithin.java36 private final long mTimeout; field in Within
39 mTimeout = timeout; in Within()
44 long timeout = mTimeout; in verify()
74 "Timed out while waiting " + mTimeout + "ms for " + data.getWanted().toString()); in verify()
DPollingCheck.java31 private final long mTimeout; field in PollingCheck
47 mTimeout = timeout; in PollingCheck()
66 long timeout = mTimeout; in run()
89 long timeout = mTimeout; in runWaitAndReturnResult()
/cts/tests/openglperf2/src/android/opengl2/cts/reference/
DGLReferenceActivity.java29 private int mTimeout; field in GLReferenceActivity
42 mTimeout = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, 0); in onCreate()
47 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, mTimeout); in onCreate()
DGLGameActivity.java44 private int mTimeout; field in GLGameActivity
58 mTimeout = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, 1000000); in onCreate()
119 watchDog = new WatchDog(mTimeout, this); in run()
/cts/tests/sensor/src/android/hardware/cts/helpers/sensoroperations/
DParallelSensorOperation.java44 private final Long mTimeout; field in ParallelSensorOperation
52 mTimeout = null; in ParallelSensorOperation()
63 mTimeout = timeout; in ParallelSensorOperation()
109 if (mTimeout != null) { in execute()
111 + TimeUnit.NANOSECONDS.convert(mTimeout, mTimeUnit); in execute()
/cts/common/device-side/bedstead/nene/src/main/java/com/android/bedstead/nene/utils/
DShellCommand.java72 private Duration mTimeout = null; field in ShellCommand.Builder
125 mTimeout = timeout; in withTimeout()
187 if (mTimeout == null) { in execute()
208 if (!latch.await(mTimeout.toMillis(), TimeUnit.MILLISECONDS)) { in execute()
209 throw new AdbException("Command could not run in " + mTimeout, build(), ""); in execute()
DPoll.java74 private Duration mTimeout = DEFAULT_TIMEOUT; field in Poll
191 mTimeout = timeout; in timeout()
207 Instant endTime = startTime.plus(mTimeout); in await()
/cts/tests/openglperf2/src/android/opengl2/cts/primitive/
DGLPrimitiveActivity.java43 private int mTimeout; field in GLPrimitiveActivity
56 mTimeout = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, 0); in onCreate()
63 Log.i(TAG, "Time Out: " + mTimeout); in onCreate()
131 watchDog = new WatchDog(mTimeout, this); in run()
/cts/tests/accessibility/common/src/android/accessibility/cts/common/
DInstrumentedAccessibilityService.java150 private final long mTimeout; field in InstrumentedAccessibilityService.SyncRunnable
154 mTimeout = timeout; in SyncRunnable()
164 return mLatch.await(mTimeout, TimeUnit.MILLISECONDS); in waitForComplete()
/cts/tests/tests/opengl/src/android/opengl/cts/
DGlTestBase.java61 public Timeout mTimeout = new Timeout(2000); field in GlTestBase
/cts/tests/app/app/src/android/app/stubs/
DLaunchpadActivity.java275 mHandler.postDelayed(mTimeout, 10 * 1000); in onResume()
524 mHandler.removeCallbacks(mTimeout); in setTestResult()
626 private final Runnable mTimeout = new Runnable() { field in LaunchpadActivity
/cts/tests/tests/webkit/src/android/webkit/cts/
DGeolocationTest.java627 public volatile boolean mTimeout = false; field in GeolocationTest.JavascriptStatusReceiver
633 mTimeout = false; in clearState()
648 mTimeout = true; in errorTimeout()
/cts/tests/tests/os/src/android/os/cts/
DLaunchpadActivity.java273 mHandler.postDelayed(mTimeout, 10 * 1000); in onResume()
526 mHandler.removeCallbacks(mTimeout); in setTestResult()
608 private final Runnable mTimeout = new Runnable() { field in LaunchpadActivity
/cts/tests/inputmethod/src/android/view/inputmethod/cts/
DInputMethodServiceTest.java1389 private final long mTimeout;
1401 this.mTimeout = timeout;
1431 mTimeout, mMaker);
1464 && selEnd == editText.getSelectionEnd(), mTimeout);
1468 waitOnMainUntil(()-> expectedText.equals(inputTextField.getText()), mTimeout);
/cts/tests/tests/media/codec/src/android/media/codec/cts/
DVideoCodecTestBase.java942 private long mTimeout; field in VideoCodecTestBase.MediaEncoderAsync
1159 mTimeout = timeout; in createCodecInternal()
1202 mInputBufIndex = mCodec.dequeueInputBuffer(mTimeout); in feedInputInternal()
1254 int result = mCodec.dequeueOutputBuffer(mBufferInfo, mTimeout); in getOutputInternal()
1262 result = mCodec.dequeueOutputBuffer(mBufferInfo, mTimeout); in getOutputInternal()