Home
last modified time | relevance | path

Searched refs:OPERATION_TIMEOUT_MS (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/voiceinteraction/src/android/voiceinteraction/cts/
DDirectActionsTest.java51 private static final long OPERATION_TIMEOUT_MS = 5000; field in DirectActionsTest
162 if (!latch.await(OPERATION_TIMEOUT_MS, TimeUnit.MILLISECONDS)) { in startVoiceInteractionSession()
163 throw new TimeoutException("actitvity not started in " + OPERATION_TIMEOUT_MS in startVoiceInteractionSession()
229 if (!latch.await(OPERATION_TIMEOUT_MS, TimeUnit.MILLISECONDS)) { in executeCommand()
230 throw new TimeoutException("result not received in " + OPERATION_TIMEOUT_MS + "ms"); in executeCommand()
273 if (!latch.await(OPERATION_TIMEOUT_MS, TimeUnit.MILLISECONDS)) { in startActivity()
274 throw new TimeoutException("actitvity not started in " + OPERATION_TIMEOUT_MS in startActivity()
330 if (!latch.await(OPERATION_TIMEOUT_MS, TimeUnit.MILLISECONDS)) { in executeRemoteCommand()
331 throw new TimeoutException("result not received in " + OPERATION_TIMEOUT_MS + "ms"); in executeRemoteCommand()
/cts/tests/tests/voiceinteraction/common/src/android/voiceinteraction/common/
DUtils.java47 public static final long OPERATION_TIMEOUT_MS = 5000; field in Utils
233 if (latch.await(OPERATION_TIMEOUT_MS, TimeUnit.MILLISECONDS)) return true; in await()
244 if (condition.await(OPERATION_TIMEOUT_MS, TimeUnit.MILLISECONDS)) return true; in await()