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

1 2 3

  /libcore/luni/src/main/java/java/util/concurrent/
TimeoutException.java 14 * not possible or desirable then {@code TimeoutException} should be
20 public class TimeoutException extends Exception {
24 * Constructs a {@code TimeoutException} with no specified detail
27 public TimeoutException() {}
30 * Constructs a {@code TimeoutException} with the specified detail
35 public TimeoutException(String message) {
AbstractExecutorService.java 112 throws InterruptedException, ExecutionException, TimeoutException {
153 throw new TimeoutException();
185 } catch (TimeoutException cannotHappen) {
193 throws InterruptedException, ExecutionException, TimeoutException {
261 } catch (TimeoutException toe) {
CyclicBarrier.java 167 TimeoutException {
224 throw new TimeoutException();
330 } catch (TimeoutException toe) {
361 * <p>If the specified waiting time elapses then {@link TimeoutException}
390 * @throws TimeoutException if the specified timeout elapses
400 TimeoutException {
FutureTask.java 170 throws InterruptedException, ExecutionException, TimeoutException {
176 throw new TimeoutException();
Exchanger.java 575 * TimeoutException} is thrown. If the time is less than or equal
584 * @throws TimeoutException if the specified waiting time elapses
589 throws InterruptedException, TimeoutException {
599 throw new TimeoutException();
Phaser.java 10 import java.util.concurrent.TimeoutException;
754 * @throws TimeoutException if timed out while waiting
758 throws InterruptedException, TimeoutException {
771 throw new TimeoutException();
    [all...]
ForkJoinTask.java 22 import java.util.concurrent.TimeoutException;
    [all...]
  /external/droiddriver/src/com/google/android/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_org/build/android/
adb_logcat_monitor.py 32 class TimeoutException(Exception):
87 except TimeoutException:
112 raise TimeoutException()
  /external/chromium_org/tools/perf/measurements/
rasterize_and_record_micro.py 8 from telemetry.core.util import TimeoutException
61 except TimeoutException:
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
AwaitableCompletionListener.java 24 import java.util.concurrent.TimeoutException;
48 TimeoutException {
50 throw new TimeoutException();
AwaitableErrorListener.java 24 import java.util.concurrent.TimeoutException;
56 TimeoutException {
58 throw new TimeoutException();
  /frameworks/volley/tests/src/com/android/volley/mock/
WaitableQueue.java 26 import java.util.concurrent.TimeoutException;
36 throws TimeoutException, InterruptedException {
39 throw new TimeoutException();
  /external/chromium_org/tools/telemetry/telemetry/core/
util.py 14 class TimeoutException(Exception):
83 raise TimeoutException('Timed out while waiting %ds for %s.' %
  /external/glide/library/src/main/java/com/bumptech/glide/volley/
VolleyRequestFuture.java 27 import java.util.concurrent.TimeoutException;
96 } catch (TimeoutException e) {
103 throws InterruptedException, ExecutionException, TimeoutException {
108 throws InterruptedException, ExecutionException, TimeoutException {
136 throw new TimeoutException();
  /frameworks/volley/src/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();
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
WebViewFindApisTestBase.java 11 import java.util.concurrent.TimeoutException;
142 * timeout for it become available. Throws a TimeoutException if the
147 throw new TimeoutException();
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractListeningExecutorService.java 29 import java.util.concurrent.TimeoutException;
64 throws InterruptedException, ExecutionException, TimeoutException {
100 throw new TimeoutException();
136 } catch (TimeoutException cannotHappen) {
143 throws InterruptedException, ExecutionException, TimeoutException {
218 } catch (TimeoutException toe) {
  /cts/tests/tests/print/src/android/print/cts/
BasePrintTest.java 67 import java.util.concurrent.TimeoutException;
218 } catch (TimeoutException te) {
444 public void waitForCount(int count, long timeoutMillis) throws TimeoutException {
452 throw new TimeoutException();
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.concurrent_1.1.0.v20130327-1442.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.concurrent_1.1.0.v20130327-1442.jar 
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadPoolExecutorSubclassTest.java 96 throws InterruptedException, ExecutionException, TimeoutException {
103 throw new TimeoutException();
    [all...]
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/
ddmlib-22.2.0.jar 

Completed in 540 milliseconds

1 2 3