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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/lang/
InterruptedException.java 24 public class InterruptedException extends Exception {
29 * Constructs a new {@code InterruptedException} that includes the current
32 public InterruptedException() {
36 * Constructs a new {@code InterruptedException} with the current stack
42 public InterruptedException(String detailMessage) {
Process.java 109 * @throws InterruptedException
112 public abstract int waitFor() throws InterruptedException;
  /external/smack/src/com/kenai/jbosh/
HTTPResponse.java 40 * @throws InterruptedException if interrupted while awaiting response
42 int getHTTPStatus() throws InterruptedException, BOSHException;
50 * @throws InterruptedException if interrupted while awaiting response
52 AbstractBody getBody() throws InterruptedException, BOSHException;
  /libcore/luni/src/main/java/java/util/concurrent/locks/
Condition.java 54 * public void put(Object x) throws InterruptedException {
68 * public Object take() throws InterruptedException {
180 * then {@link InterruptedException} is thrown and the current thread's
199 * @throws InterruptedException if the current thread is interrupted
202 void await() throws InterruptedException;
269 * then {@link InterruptedException} is thrown and the current thread's
326 * @throws InterruptedException if the current thread is interrupted
329 long awaitNanos(long nanosTimeout) throws InterruptedException;
341 * @throws InterruptedException if the current thread is interrupted
344 boolean await(long time, TimeUnit unit) throws InterruptedException;
    [all...]
Lock.java 179 * then {@link InterruptedException} is thrown and the current thread's
199 * @throws InterruptedException if the current thread is
203 void lockInterruptibly() throws InterruptedException;
258 * then {@link InterruptedException} is thrown and the current thread's
288 * @throws InterruptedException if the current thread is interrupted
292 boolean tryLock(long time, TimeUnit unit) throws InterruptedException;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
InterruptedExceptionTest.java 25 * java.lang.InterruptedException#InterruptedException()
28 InterruptedException e = new InterruptedException();
35 * java.lang.InterruptedException#InterruptedException(java.lang.String)
38 InterruptedException e = new InterruptedException("fixture");
  /libcore/luni/src/main/java/java/util/concurrent/
BlockingDeque.java 246 * @throws InterruptedException if interrupted while waiting
253 void putFirst(E e) throws InterruptedException;
260 * @throws InterruptedException if interrupted while waiting
267 void putLast(E e) throws InterruptedException;
281 * @throws InterruptedException if interrupted while waiting
289 throws InterruptedException;
303 * @throws InterruptedException if interrupted while waiting
311 throws InterruptedException;
318 * @throws InterruptedException if interrupted while waiting
320 E takeFirst() throws InterruptedException;
    [all...]
BlockingQueue.java 112 * } catch (InterruptedException ex) { ... handle ...}
123 * } catch (InterruptedException ex) { ... handle ...}
196 * @throws InterruptedException if interrupted while waiting
203 void put(E e) throws InterruptedException;
216 * @throws InterruptedException if interrupted while waiting
224 throws InterruptedException;
231 * @throws InterruptedException if interrupted while waiting
233 E take() throws InterruptedException;
245 * @throws InterruptedException if interrupted while waiting
248 throws InterruptedException;
    [all...]
CompletionService.java 67 * @throws InterruptedException if interrupted while waiting
69 Future<V> take() throws InterruptedException;
92 * @throws InterruptedException if interrupted while waiting
94 Future<V> poll(long timeout, TimeUnit unit) throws InterruptedException;
Future.java 33 * throws InterruptedException {
119 * @throws InterruptedException if the current thread was interrupted
122 V get() throws InterruptedException, ExecutionException;
134 * @throws InterruptedException if the current thread was interrupted
139 throws InterruptedException, ExecutionException, TimeoutException;
TransferQueue.java 68 * @throws InterruptedException if interrupted while waiting,
76 void transfer(E e) throws InterruptedException;
97 * @throws InterruptedException if interrupted while waiting,
106 throws InterruptedException;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
ISensorTestStateContainer.java 36 void waitForUserToContinue() throws InterruptedException;
58 int executeActivity(String action) throws InterruptedException;
67 int executeActivity(Intent intent) throws InterruptedException;
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
Dispatcher.java 26 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException;
  /art/test/033-class-init-deadlock/src/
Main.java 34 try { Thread.sleep(1000); } catch (InterruptedException ie) { }
37 try { Thread.sleep(6000); } catch (InterruptedException ie) { }
52 try { Thread.sleep(3000); } catch (InterruptedException ie) { }
62 try { Thread.sleep(3000); } catch (InterruptedException ie) { }
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
ISensorOperation.java 43 * - cleaning up on {@link InterruptedException}
46 public void execute() throws InterruptedException;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/d/
T_monitor_enter_1.java 22 public void run() throws InterruptedException {
T_monitor_enter_2.java 24 public void run(int v) throws InterruptedException {
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionRequest.java 49 * before this began, an {@link InterruptedException} will
61 * @throws InterruptedException
65 throws InterruptedException, ConnectionPoolTimeoutException;
69 * causing it to throw an {@link InterruptedException}.
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
Dispatcher.java 24 public abstract MockResponse dispatch(RecordedRequest request) throws InterruptedException;
  /frameworks/base/services/core/java/com/android/server/am/
AppErrorResult.java 33 } catch (InterruptedException e) {
  /libcore/support/src/test/java/libcore/java/lang/ref/
FinalizationTester.java 43 } catch (InterruptedException e) {
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
AutofillDialogControllerTest.java 186 public void testFieldsAreFilledMinimal() throws InterruptedException, TimeoutException {
195 public void testFieldsAreFilledFullBilling() throws InterruptedException, TimeoutException {
204 public void testFieldsAreFilledShipping() throws InterruptedException, TimeoutException {
213 public void testFieldsAreFilledBillingPhone() throws InterruptedException, TimeoutException {
222 public void testFieldsAreFilledEverything() throws InterruptedException, TimeoutException {
233 public void testRacTypeName() throws InterruptedException, TimeoutException {
241 public void testRacTypeBillingName() throws InterruptedException, TimeoutException {
249 public void testRacTypeShippingName() throws InterruptedException, TimeoutException {
259 public void testRacTypeTel() throws InterruptedException, TimeoutException {
267 public void testRacTypeBillingTel() throws InterruptedException, TimeoutException
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
LocalActivityManagerTest.java 59 public void testDispatchResume() throws InterruptedException {
65 private void waitForResult() throws InterruptedException {
73 public void testStartActivity() throws InterruptedException {
79 public void testDispatchCreate() throws InterruptedException {
85 public void testDispatchStop() throws InterruptedException {
91 public void testDispatchPauseTrue() throws InterruptedException {
97 public void testDispatchPauseFalse() throws InterruptedException {
103 public void testSaveInstanceState() throws InterruptedException {
109 public void testDispatchDestroy() throws InterruptedException {
115 public void testRemoveAllActivities() throws InterruptedException {
    [all...]
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
CallbackHelper.java 113 * CallbackHelper operationHelper) throws InterruptedException, TimeoutException {
170 * @throws InterruptedException
174 TimeUnit unit) throws InterruptedException, TimeoutException {
190 throws InterruptedException, TimeoutException {
196 throws InterruptedException, TimeoutException {
207 throws InterruptedException, TimeoutException {
221 throws InterruptedException, TimeoutException {
  /external/guava/guava-bootstrap/src/java/util/concurrent/
ExecutorService.java 26 throws InterruptedException;
35 throws InterruptedException;
39 throws InterruptedException;
42 throws InterruptedException, ExecutionException;
46 throws InterruptedException, ExecutionException, TimeoutException;

Completed in 576 milliseconds

1 2 3 4 5 6 7 8 91011>>