HomeSort by relevance Sort by last modified time
    Searched defs:TimeoutException (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /libcore/ojluni/src/main/java/java/util/concurrent/
TimeoutException.java 43 * not possible or desirable then {@code TimeoutException} should be
49 public class TimeoutException extends Exception {
53 * Constructs a {@code TimeoutException} with no specified detail
56 public TimeoutException() {}
59 * Constructs a {@code TimeoutException} with the specified detail
64 public TimeoutException(String message) {
AbstractExecutorService.java 149 throws InterruptedException, ExecutionException, TimeoutException {
190 throw new TimeoutException();
221 } catch (TimeoutException cannotHappen) {
229 throws InterruptedException, ExecutionException, TimeoutException {
288 catch (TimeoutException timedOut) {
CyclicBarrier.java 201 TimeoutException {
258 throw new TimeoutException();
364 } catch (TimeoutException toe) {
395 * <p>If the specified waiting time elapses then {@link TimeoutException}
424 * @throws TimeoutException if the specified timeout elapses.
435 TimeoutException {
Exchanger.java 599 * TimeoutException} is thrown. If the time is less than or equal
608 * @throws TimeoutException if the specified waiting time elapses
613 throws InterruptedException, TimeoutException {
623 throw new TimeoutException();
FutureTask.java 200 throws InterruptedException, ExecutionException, TimeoutException {
206 throw new TimeoutException();
  /external/droiddriver/src/io/appium/droiddriver/exceptions/
TimeoutException.java 23 public class TimeoutException extends DroidDriverException {
25 public TimeoutException(String message) {
29 public TimeoutException(Throwable cause) {
33 public TimeoutException(String message, Throwable cause) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/exceptions/
TimeoutException.java 33 public class TimeoutException extends IOException {
47 public TimeoutException(boolean connectionClosed) {
  /external/chromium-trace/catapult/common/py_utils/py_utils/
__init__.py 131 raise TimeoutException('Timed out while waiting %ds for %s.' %
134 class TimeoutException(Exception):
  /external/volley/src/test/java/com/android/volley/mock/
WaitableQueue.java 26 import java.util.concurrent.TimeoutException;
36 throws TimeoutException, InterruptedException {
39 throw new TimeoutException();
  /frameworks/base/core/java/android/os/
SynchronousResultReceiver.java 24 import java.util.concurrent.TimeoutException;
75 * @throws TimeoutException if the timeout in milliseconds expired.
77 public @NonNull Result awaitResult(long timeoutMillis) throws TimeoutException {
91 throw new TimeoutException();
  /external/volley/src/main/java/com/android/volley/toolbox/
RequestFuture.java 26 import java.util.concurrent.TimeoutException;
89 } catch (TimeoutException e) {
96 throws InterruptedException, ExecutionException, TimeoutException {
101 throws InterruptedException, ExecutionException, TimeoutException {
121 throw new TimeoutException();
  /cts/tests/tests/view/src/android/view/cts/
TextureViewTest.java 40 import java.util.concurrent.TimeoutException;
104 throws InterruptedException, TimeoutException {
112 throw new TimeoutException();
116 throws InterruptedException, TimeoutException {
124 throw new TimeoutException();
TextureViewCtsActivity.java 38 import java.util.concurrent.TimeoutException;
99 public void waitForEnterAnimationComplete() throws TimeoutException, InterruptedException {
101 throw new TimeoutException();
132 throw new TimeoutException();
  /external/guava/guava-bootstrap/src/java/util/concurrent/
AbstractExecutorService.java 40 throws InterruptedException, ExecutionException, TimeoutException {
72 throw new TimeoutException();
108 } catch (TimeoutException cannotHappen) {
116 throws InterruptedException, ExecutionException, TimeoutException {
182 } catch (TimeoutException toe) {
  /libcore/ojluni/src/main/java/sun/nio/ch/
PendingFuture.java 192 throws ExecutionException, InterruptedException, TimeoutException
197 if (!latch.await(timeout, unit)) throw new TimeoutException();
  /packages/apps/Camera2/src/com/android/camera/async/
ConcurrentBufferQueue.java 25 import java.util.concurrent.TimeoutException;
174 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException,
178 throw new TimeoutException();
  /cts/hostsidetests/incident/apps/graphicsstatsapp/src/com/android/server/cts/device/graphicsstats/
DrawFramesActivity.java 31 import java.util.concurrent.TimeoutException;
146 public void drawFrames(final int frameCount) throws InterruptedException, TimeoutException {
150 public void waitForReady() throws InterruptedException, TimeoutException {
152 throw new TimeoutException();
156 public void drawFrames(final int[] framesToDraw) throws InterruptedException, TimeoutException {
158 throw new TimeoutException();
179 throw new TimeoutException("Drawing " + framesToDraw.length + " frames timed out after "
  /external/autotest/client/cros/multimedia/
cfm_facade_native.py 16 class TimeoutException(Exception):
display_facade_native.py 23 class TimeoutException(Exception):
205 @raise TimeoutException when the operation is timed out.
478 @raise TimeoutException if it fails.
  /external/glide/library/src/main/java/com/bumptech/glide/request/
RequestFutureTarget.java 13 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/guava/guava-tests/test/com/google/common/util/concurrent/
TestThread.java 33 import java.util.concurrent.TimeoutException;
188 * @throws TimeoutException if this thread does not accept the request within a resonable amount
194 throw new TimeoutException();
201 * @throws TimeoutException if this thread does not offer a response within a resonable amount of
209 throw new TimeoutException();
  /frameworks/base/core/tests/coretests/src/android/print/
BasePrintTest.java 54 import java.util.concurrent.TimeoutException;
185 } catch (TimeoutException te) {
299 public void waitForCount(int count, long timeoutMillis) throws TimeoutException {
307 throw new TimeoutException();
  /frameworks/base/packages/PrintSpooler/tests/outofprocess/src/com/android/printspooler/outofprocess/tests/
WorkflowTest.java 54 import java.util.concurrent.TimeoutException;
92 throws TimeoutException, InterruptedException {
97 throw new TimeoutException();
  /external/autotest/client/common_lib/cros/
arc.py 620 class TimeoutException(Exception):
626 exception=TimeoutException,
630 except TimeoutException:
  /cts/tests/tests/netsecpolicy/src/android/security/
NetworkSecurityPolicyTestBase.java 27 import java.util.concurrent.TimeoutException;
332 throws InterruptedException, ExecutionException, TimeoutException {
343 throw new TimeoutException();

Completed in 638 milliseconds

1 2 3 4 5 6 7