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

1 2

  /libcore/ojluni/src/main/java/java/lang/
InterruptedException.java 37 * throw new InterruptedException();
50 class InterruptedException extends Exception {
54 * Constructs an <code>InterruptedException</code> with no detail message.
56 public InterruptedException() {
61 * Constructs an <code>InterruptedException</code> with the
66 public InterruptedException(String s) {
Thread.java 308 * @throws InterruptedException
313 public static void sleep(long millis) throws InterruptedException {
319 throws InterruptedException;
338 * @throws InterruptedException
344 throws InterruptedException {
360 throw new InterruptedException();
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsVerifierTestActivity.java 55 protected SensorTestDetails executeTests() throws InterruptedException {
86 private SensorTestDetails executeTest(Method testMethod) throws InterruptedException {
113 throw new InterruptedException();
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoDownloadRunnable.java 135 throw new InterruptedException();
164 throw new InterruptedException();
171 throw new InterruptedException();
240 throw new InterruptedException();
327 throw new InterruptedException();
334 throw new InterruptedException();
369 } catch (InterruptedException e1) {
  /device/google/cuttlefish_common/guest/monitoring/vsoc_service/java/com/android/google/gce/gceservice/
GceFuture.java 105 public T get() throws CancellationException, ExecutionException, InterruptedException {
119 throws CancellationException, ExecutionException, InterruptedException, TimeoutException {
140 throws InterruptedException, TimeoutException {
145 if (!mDone) throw new InterruptedException();
  /libcore/ojluni/src/main/java/java/util/concurrent/
CyclicBarrier.java 73 * } catch (InterruptedException ex) {
125 * {@link InterruptedException} if they too were interrupted at about
200 throws InterruptedException, BrokenBarrierException,
212 throw new InterruptedException();
238 } catch (InterruptedException ie) {
329 * then {@link InterruptedException} is thrown and the current thread's
353 * @throws InterruptedException if the current thread was interrupted
361 public int await() throws InterruptedException, BrokenBarrierException {
392 * then {@link InterruptedException} is thrown and the current thread's
422 * @throws InterruptedException if the current thread was interrupte
    [all...]
Exchanger.java 68 * } catch (InterruptedException ex) { ... handle ... }
81 * } catch (InterruptedException ex) { ... handle ...}
549 * then {@link InterruptedException} is thrown and the current thread's
554 * @throws InterruptedException if the current thread was
558 public V exchange(V x) throws InterruptedException {
565 throw new InterruptedException();
595 * then {@link InterruptedException} is thrown and the current thread's
606 * @throws InterruptedException if the current thread was
613 throws InterruptedException, TimeoutException {
621 throw new InterruptedException();
    [all...]
FutureTask.java 189 public V get() throws InterruptedException, ExecutionException {
200 throws InterruptedException, ExecutionException, TimeoutException {
396 throws InterruptedException {
416 // so never return empty-handed or throw InterruptedException
420 throw new InterruptedException();
Phaser.java 732 * value, throwing {@code InterruptedException} if interrupted
743 * @throws InterruptedException if thread interrupted while waiting
746 throws InterruptedException {
756 throw new InterruptedException();
764 * InterruptedException} if interrupted while waiting, or
778 * @throws InterruptedException if thread interrupted while waiting
    [all...]
ForkJoinTask.java 307 try { wait(timeout); } catch (InterruptedException ie) { }
331 } catch (InterruptedException ie) {
349 private int externalInterruptibleAwaitDone() throws InterruptedException {
352 throw new InterruptedException();
705 * InterruptedException}.
    [all...]
LinkedTransferQueue.java     [all...]
SynchronousQueue.java     [all...]
CompletableFuture.java 347 throws InterruptedException, ExecutionException {
349 throw new InterruptedException();
    [all...]
ForkJoinPool.java     [all...]
  /external/devlib/src/netstats/src/com/arm/devlib/trafficcatcher/
TrafficMetricsService.java 3 import java.lang.InterruptedException;
44 throw new InterruptedException();
47 } catch (InterruptedException e) {
  /external/glide/library/src/main/java/com/bumptech/glide/request/
RequestFutureTarget.java 108 public R get() throws InterruptedException, ExecutionException {
120 public R get(long time, TimeUnit timeUnit) throws InterruptedException, ExecutionException, TimeoutException {
186 private synchronized R doGet(Long timeoutMillis) throws ExecutionException, InterruptedException, TimeoutException {
206 throw new InterruptedException();
262 public void waitForTimeout(Object toWaitOn, long timeoutMillis) throws InterruptedException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileParserTask.java 137 InterruptedException {
170 throw new InterruptedException();
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 448 throws InterruptedException {
460 throw new InterruptedException();
476 throws InterruptedException {
498 throw new InterruptedException();
541 throws InterruptedException {
556 throw new InterruptedException();
572 throws InterruptedException {
597 throw new InterruptedException();
773 * @throws InterruptedException if the current thread is interrupted
776 throws InterruptedException {
    [all...]
AbstractQueuedSynchronizer.java 247 * public void lockInterruptibly() throws InterruptedException {
251 * throws InterruptedException {
281 * public void await() throws InterruptedException {
    [all...]
StampedLock.java 376 * @throws InterruptedException if the current thread is interrupted
380 throws InterruptedException {
393 throw new InterruptedException();
403 * @throws InterruptedException if the current thread is interrupted
406 public long writeLockInterruptibly() throws InterruptedException {
411 throw new InterruptedException();
457 * @throws InterruptedException if the current thread is interrupted
461 throws InterruptedException {
480 throw new InterruptedException();
490 * @throws InterruptedException if the current thread is interrupte
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/16/
android.jar 

Completed in 362 milliseconds

1 2