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

1 2

  /libcore/luni/src/main/java/java/util/concurrent/
TimeoutException.java 14 * not possible or desirable then <tt>TimeoutException</tt> should be
20 public class TimeoutException extends Exception {
24 * Constructs a <tt>TimeoutException</tt> with no specified detail
27 public TimeoutException() {}
30 * Constructs a <tt>TimeoutException</tt> with the specified detail
35 public TimeoutException(String message) {
AbstractExecutorService.java 112 throws InterruptedException, ExecutionException, TimeoutException {
153 throw new TimeoutException();
187 } catch (TimeoutException cannotHappen) {
195 throws InterruptedException, ExecutionException, TimeoutException {
263 } catch (TimeoutException toe) {
CyclicBarrier.java 164 TimeoutException {
221 throw new TimeoutException();
327 } catch (TimeoutException toe) {
358 * <p>If the specified waiting time elapses then {@link TimeoutException}
387 * @throws TimeoutException if the specified timeout elapses
397 TimeoutException {
FutureTask.java 89 throws InterruptedException, ExecutionException, TimeoutException {
227 V innerGet(long nanosTimeout) throws InterruptedException, ExecutionException, TimeoutException {
229 throw new TimeoutException();
Exchanger.java 632 * TimeoutException} is thrown. If the time is less than or equal
641 * @throws TimeoutException if the specified waiting time elapses
645 throws InterruptedException, TimeoutException {
654 throw new TimeoutException();
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
TimeoutException.java 24 public class TimeoutException extends Exception {
AdbHelper.java 69 * @throws TimeoutException in case of timeout on the connection.
75 throws IOException, TimeoutException, AdbCommandRejectedException {
97 } catch (TimeoutException e) {
116 * @throws TimeoutException in case of timeout on the connection.
122 throws TimeoutException, AdbCommandRejectedException, IOException {
144 } catch (TimeoutException e) {
207 * @throws TimeoutException in case of timeout on the connection.
211 throws TimeoutException, IOException {
264 * @throws TimeoutException in case of timeout on the connection.
269 throws TimeoutException, AdbCommandRejectedException, IOException
    [all...]
  /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/support/volley/tests/src/com/android/volley/mock/
WaitableQueue.java 26 import java.util.concurrent.TimeoutException;
36 throws TimeoutException, InterruptedException {
39 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/holo/src/android/holo/cts/
ThemeTestActivity.java 30 import java.util.concurrent.TimeoutException;
184 TimeoutException {
186 throw new TimeoutException();
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.core_2.2.0.v20100429.jar 
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 

Completed in 1685 milliseconds

1 2