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

123456

/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/volley/src/main/java/com/android/volley/toolbox/
H A DRequestFuture.java26 import java.util.concurrent.TimeoutException;
89 } catch (TimeoutException e) {
96 throws InterruptedException, ExecutionException, TimeoutException {
101 throws InterruptedException, ExecutionException, TimeoutException {
121 throw new TimeoutException();
/external/autotest/client/site_tests/enterprise_RemoraRequisitionDisplayUsage/
H A Denterprise_RemoraRequisitionDisplayUsage.py8 from py_utils import TimeoutException namespace
33 except TimeoutException:
/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/volley/src/test/java/com/android/volley/mock/
H A DWaitableQueue.java26 import java.util.concurrent.TimeoutException;
36 throws TimeoutException, InterruptedException {
39 throw new TimeoutException();
/external/vogar/src/vogar/target/junit/
H A DTimeoutAndAbortRunRule.java25 import java.util.concurrent.TimeoutException;
84 } catch (TimeoutException e) {
101 throws InterruptedException, ExecutionException, TimeoutException {
/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/common/py_utils/py_utils/
H A Dpy_utils_unittest.py37 with self.assertRaises(py_utils.TimeoutException):
54 with self.assertRaises(py_utils.TimeoutException):
/external/droiddriver/src/io/appium/droiddriver/base/
H A DAbstractDroidDriver.java24 import io.appium.droiddriver.exceptions.TimeoutException;
51 } catch (TimeoutException e) {
/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.java36 import org.apache.harmony.jpda.tests.framework.jdwp.exceptions.TimeoutException;
127 * @throws TimeoutException
172 throw new TimeoutException(false);
265 * @throws TimeoutException
330 throw new TimeoutException(false);
395 * @throws TimeoutException
425 throw new TimeoutException(false);
596 connectionException = new TimeoutException(true);
621 * timeout, TimeoutException is thrown.
630 * @throws TimeoutException
[all...]
/external/droiddriver/src/io/appium/droiddriver/util/
H A DInstrumentationUtils.java26 import io.appium.droiddriver.exceptions.TimeoutException;
112 } catch (java.util.concurrent.TimeoutException e) {
163 } catch (java.util.concurrent.TimeoutException e) {
164 throw new TimeoutException(

Completed in 1271 milliseconds

123456