Home
last modified time | relevance | path

Searched refs:CONNECTION_TIMEOUT_MS (Results 1 – 3 of 3) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/
DMyAutofillCallback.java19 import static android.autofillservice.cts.Helper.CONNECTION_TIMEOUT_MS;
51 final MyEvent event = mEvents.poll(CONNECTION_TIMEOUT_MS, TimeUnit.MILLISECONDS); in getEvent()
53 throw new RetryableException("no event in %d ms", CONNECTION_TIMEOUT_MS); in getEvent()
DInstrumentedAutoFillService.java21 import static android.autofillservice.cts.Helper.CONNECTION_TIMEOUT_MS;
141 final String state = sConnectionStates.poll(CONNECTION_TIMEOUT_MS, TimeUnit.MILLISECONDS); in waitUntilConnected()
144 throw new RetryableException("not connected in %d ms", CONNECTION_TIMEOUT_MS); in waitUntilConnected()
320 response = mResponses.poll(CONNECTION_TIMEOUT_MS, TimeUnit.MILLISECONDS); in onFillRequest()
DHelper.java75 static final long CONNECTION_TIMEOUT_MS = 2000; field in Helper