Home
last modified time | relevance | path

Searched refs:CONNECTION_TIMEOUT (Results 1 – 5 of 5) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/testcore/
DMyAutofillCallback.java21 import static android.autofillservice.cts.testcore.Timeouts.CONNECTION_TIMEOUT;
46 public static final Timeout MY_TIMEOUT = CONNECTION_TIMEOUT;
81 final MyEvent event = mEvents.poll(CONNECTION_TIMEOUT.ms(), TimeUnit.MILLISECONDS); in getEvent()
83 throw new RetryableException(CONNECTION_TIMEOUT, "no event"); in getEvent()
DAugmentedHelper.java19 import static android.autofillservice.cts.testcore.Timeouts.CONNECTION_TIMEOUT;
208 final boolean called = latch.await(CONNECTION_TIMEOUT.ms(), TimeUnit.MILLISECONDS); in await()
211 + " in " + CONNECTION_TIMEOUT.ms() + "ms"); in await()
DInstrumentedAutoFillService.java24 import static android.autofillservice.cts.testcore.Timeouts.CONNECTION_TIMEOUT;
344 waitConnectionState(CONNECTION_TIMEOUT, true); in waitUntilConnected()
643 response = mResponses.poll(CONNECTION_TIMEOUT.ms(), TimeUnit.MILLISECONDS); in onFillRequest()
715 flags, inlineRequest), CONNECTION_TIMEOUT.ms()); in onFillRequest()
725 callback, flags, inlineRequest), CONNECTION_TIMEOUT.ms()); in onFillRequest()
741 CONNECTION_TIMEOUT.ms()); in onSaveRequest()
DTimeouts.java38 public static final Timeout CONNECTION_TIMEOUT = new Timeout("CONNECTION_TIMEOUT", field in Timeouts
DHelper.java946 Timeouts.CONNECTION_TIMEOUT.run("Enabling Autofill service", () -> { in enableAutofillService()