Searched refs:TimeoutException (Results 1 - 25 of 151) sorted by relevance

1234567

/external/droiddriver/src/io/appium/droiddriver/exceptions/
H A DTimeoutException.java23 public class TimeoutException extends DroidDriverException { class in inherits:DroidDriverException
25 public TimeoutException(String message) { method in class:TimeoutException
29 public TimeoutException(Throwable cause) { method in class:TimeoutException
33 public TimeoutException(String message, Throwable cause) { method in class:TimeoutException
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/exceptions/
H A DTimeoutException.java33 public class TimeoutException extends IOException { class in inherits:IOException
47 public TimeoutException(boolean connectionClosed) { method in class:TimeoutException
/external/guava/guava/src/com/google/common/util/concurrent/
H A DCheckedFuture.java25 import java.util.concurrent.TimeoutException;
69 * timeout this method throws a normal {@link TimeoutException}.
72 * @throws TimeoutException if retrieving the result timed out.
75 V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X;
H A DService.java23 import java.util.concurrent.TimeoutException;
107 * @throws TimeoutException if the service has not reached the given state within the deadline
115 void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException;
133 * @throws TimeoutException if the service has not reached the given state within the deadline
137 void awaitTerminated(long timeout, TimeUnit unit) throws TimeoutException;
H A DAbstractCheckedFuture.java24 import java.util.concurrent.TimeoutException;
93 * method's standard exceptions (excluding {@link TimeoutException}, which is
102 * @throws TimeoutException {@inheritDoc}
105 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X {
H A DForwardingCheckedFuture.java23 import java.util.concurrent.TimeoutException;
50 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X {
H A DForwardingFuture.java25 import java.util.concurrent.TimeoutException;
68 throws InterruptedException, ExecutionException, TimeoutException {
H A DAbstractExecutionThreadService.java25 import java.util.concurrent.TimeoutException;
203 @Override public final void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException {
217 @Override public final void awaitTerminated(long timeout, TimeUnit unit) throws TimeoutException {
H A DAbstractIdleService.java25 import java.util.concurrent.TimeoutException;
157 @Override public final void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException {
171 @Override public final void awaitTerminated(long timeout, TimeUnit unit) throws TimeoutException {
H A DAbstractFuture.java25 import java.util.concurrent.TimeoutException;
95 TimeoutException, ExecutionException {
261 * {@link TimeoutException} if the timer expires, otherwise behaves like
264 V get(long nanos) throws TimeoutException, CancellationException,
269 throw new TimeoutException("Timeout waiting for task.");
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
H A DExecutorTestBase.java21 import java.util.concurrent.TimeoutException;
55 } catch (TimeoutException e) {
/external/autotest/server/cros/ap_configurators/
H A DbelkinF7D1301_ap_configurator.py7 from selenium.common.exceptions import TimeoutException as \
/external/droiddriver/src/io/appium/droiddriver/
H A DDroidDriver.java20 import io.appium.droiddriver.exceptions.TimeoutException;
64 * @throws TimeoutException If no matching elements are found within the
93 * @throws TimeoutException If matching element does not appear within the
103 * @throws TimeoutException If matching element is not gone within the default
/external/droiddriver/src/io/appium/droiddriver/uiautomation/
H A DUiAutomationDriver.java30 import io.appium.droiddriver.exceptions.TimeoutException;
90 } catch (java.util.concurrent.TimeoutException e) {
91 throw new TimeoutException(e);
110 throw new TimeoutException(
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
H A Dutil.py53 class TimeoutException(Exception): class in inherits:Exception
87 raise TimeoutException('Timed out while waiting %ds for %s.' %
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAbstractChainedListenableFutureTest.java24 import java.util.concurrent.TimeoutException;
56 fail("The data is not yet ready, so a TimeoutException is expected");
57 } catch (TimeoutException expected) {}
H A DSettableFutureTest.java22 import java.util.concurrent.TimeoutException;
47 } catch (TimeoutException expected) {}
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DRequestFutureTarget.java13 import java.util.concurrent.TimeoutException;
111 } catch (TimeoutException e) {
120 public R get(long time, TimeUnit timeUnit) throws InterruptedException, ExecutionException, TimeoutException {
186 private synchronized R doGet(Long timeoutMillis) throws ExecutionException, InterruptedException, TimeoutException {
212 throw new TimeoutException();
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DPacketDispatcher.java37 import org.apache.harmony.jpda.tests.framework.jdwp.exceptions.TimeoutException;
128 * @throws TimeoutException
173 throw new TimeoutException(false);
265 * @throws TimeoutException
330 throw new TimeoutException(false);
395 * @throws TimeoutException
427 throw new TimeoutException(false);
599 connectionException = new TimeoutException(true);
624 * timeout, TimeoutException is thrown.
633 * @throws TimeoutException
[all...]
/external/autotest/client/common_lib/cros/
H A Dretry.py19 raise error.TimeoutException('Call is timed out.')
97 except error.TimeoutException:
187 raise error.TimeoutException('Call is timed out.')
/external/v8/build/android/
H A Dadb_logcat_monitor.py32 class TimeoutException(Exception): class in inherits:Exception
87 except TimeoutException:
112 raise TimeoutException()
/external/chromium-trace/catapult/telemetry/telemetry/internal/forwarders/
H A Ddo_nothing_forwarder_unittest.py27 raise exceptions.TimeoutException
/external/droiddriver/src/io/appium/droiddriver/util/
H A DInstrumentationUtils.java32 import io.appium.droiddriver.exceptions.TimeoutException;
119 } catch (java.util.concurrent.TimeoutException e) {
165 } catch (java.util.concurrent.TimeoutException e) {
166 throw new TimeoutException("Timed out after " + runOnMainSyncTimeoutMillis
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DHoldEventsTest.java34 import org.apache.harmony.jpda.tests.framework.jdwp.exceptions.TimeoutException;
79 } catch (TimeoutException e) {
/external/guice/extensions/service/test/com/google/inject/service/
H A DSingleServiceIntegrationTest.java12 import java.util.concurrent.TimeoutException;
60 throws InterruptedException, ExecutionException, TimeoutException {

Completed in 1083 milliseconds

1234567