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

  /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 116 throws InterruptedException, ExecutionException, TimeoutException {
157 throw new TimeoutException();
193 } catch (TimeoutException cannotHappen) {
201 throws InterruptedException, ExecutionException, TimeoutException {
269 } catch (TimeoutException toe) {
CyclicBarrier.java 166 TimeoutException {
223 throw new TimeoutException();
329 } catch (TimeoutException toe) {
360 * <p>If the specified waiting time elapses then {@link TimeoutException}
389 * @throws TimeoutException if the specified timeout elapses
399 TimeoutException {
FutureTask.java 90 throws InterruptedException, ExecutionException, TimeoutException {
228 V innerGet(long nanosTimeout) throws InterruptedException, ExecutionException, TimeoutException {
230 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 25 public class TimeoutException extends IOException {
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...]
  /external/guava/src/com/google/common/util/concurrent/
Futures.java 27 import java.util.concurrent.TimeoutException;
69 throws TimeoutException, ExecutionException {
82 throw new TimeoutException();
379 ExecutionException, TimeoutException {
AbstractService.java 29 import java.util.concurrent.TimeoutException;
289 throws InterruptedException, ExecutionException, TimeoutException {
293 throw new TimeoutException();
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ThreadPoolExecutorSubclassTest.java 101 throws InterruptedException, ExecutionException, TimeoutException {
108 throw new TimeoutException();
    [all...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 123 milliseconds