HomeSort by relevance Sort by last modified time
    Searched refs:InterruptedException (Results 76 - 100 of 593) sorted by null

1 2 34 5 6 7 8 91011>>

  /cts/tools/vm-tests/src/dot/junit/opcodes/monitor_enter/
Test_monitor_enter.java 30 * @throws InterruptedException
32 public void testN1() throws InterruptedException {
50 * @throws InterruptedException
52 public void testN2() throws InterruptedException {
157 } catch (InterruptedException e) {
174 } catch (InterruptedException e) {
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyThrottleEvent.java 44 } catch (InterruptedException e1) {
MonkeyWaitEvent.java 41 } catch (InterruptedException e1) {
  /external/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 59 public V get(long timeout, TimeUnit unit) throws InterruptedException,
68 public V get() throws InterruptedException, ExecutionException {
217 ExecutionException, InterruptedException {
234 InterruptedException {
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLockTest.java 87 } catch (InterruptedException e) {
110 } catch (InterruptedException e) {
141 } catch (InterruptedException e) {
168 } catch (InterruptedException e) {
  /libcore/luni/src/main/java/java/util/concurrent/
Semaphore.java 29 * public Object getItem() throws InterruptedException {
278 * then {@link InterruptedException} is thrown and the current thread's
281 * @throws InterruptedException if the current thread is interrupted
283 public void acquire() throws InterruptedException {
366 * then {@link InterruptedException} is thrown and the current thread's
377 * @throws InterruptedException if the current thread is interrupted
380 throws InterruptedException {
427 * then {@link InterruptedException} is thrown and the current thread's
434 * @throws InterruptedException if the current thread is interrupted
437 public void acquire(int permits) throws InterruptedException {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ObjectTest.java 226 } catch (InterruptedException ex) {
274 } catch (InterruptedException ex) {
276 "Unexpectedly got an InterruptedException. (status = "
310 } catch (InterruptedException ex) {
360 } catch (InterruptedException ex) {
362 "Unexpectedly got an InterruptedException. (status = "
410 } catch (InterruptedException ex) {
436 } catch (InterruptedException ex) {
438 "Unexpectedly got an InterruptedException. (status = "
449 } catch(InterruptedException ex)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
JSR166TestCase.java 334 } catch (InterruptedException ie) {
335 fail("Unexpected InterruptedException");
482 * Does <em>NOT</em> throw InterruptedException.
487 } catch (InterruptedException wakeup) {}
559 threadShouldThrow("InterruptedException");
560 } catch (InterruptedException success) {
586 threadShouldThrow("InterruptedException");
588 } catch (InterruptedException success) {
615 } catch (InterruptedException quittingTime) {}
635 protected void realRun() throws InterruptedException {
    [all...]
LinkedBlockingQueueTest.java 259 public void testPutNull() throws InterruptedException {
270 public void testPut() throws InterruptedException {
283 public void testBlockingPut() throws InterruptedException {
286 public void realRun() throws InterruptedException {
294 } catch (InterruptedException success) {}
308 public void testPutWithTake() throws InterruptedException {
312 public void realRun() throws InterruptedException {
318 } catch (InterruptedException success) {}
334 public void testTimedOffer() throws InterruptedException {
337 public void realRun() throws InterruptedException {
    [all...]
ArrayBlockingQueueTest.java 270 public void testPutNull() throws InterruptedException {
281 public void testPut() throws InterruptedException {
294 public void testBlockingPut() throws InterruptedException {
297 public void realRun() throws InterruptedException {
305 } catch (InterruptedException success) {}
319 public void testPutWithTake() throws InterruptedException {
323 public void realRun() throws InterruptedException {
329 } catch (InterruptedException success) {}
345 public void testTimedOffer() throws InterruptedException {
348 public void realRun() throws InterruptedException {
    [all...]
ScheduledExecutorTest.java 26 public void testExecute() throws InterruptedException {
58 public void testSchedule3() throws InterruptedException {
73 public void testSchedule4() throws InterruptedException {
92 public void testSchedule5() throws InterruptedException {
106 public void testFixedRateSequence() throws InterruptedException {
124 public void testFixedDelaySequence() throws InterruptedException {
141 public void testExecuteNull() throws InterruptedException {
155 public void testScheduleNull() throws InterruptedException {
168 public void testSchedule1_RejectedExecutionException() throws InterruptedException {
185 public void testSchedule2_RejectedExecutionException() throws InterruptedException {
    [all...]
SystemTest.java 30 public void testNanoTime1() throws InterruptedException {
50 public void testNanoTime2() throws InterruptedException {
CyclicBarrierTest.java 111 Thread t1 = new ThreadShouldThrow(InterruptedException.class) {
134 Thread t1 = new ThreadShouldThrow(InterruptedException.class) {
154 public void testAwait3_TimeOutException() throws InterruptedException {
169 public void testAwait4_Timeout_BrokenBarrier() throws InterruptedException {
190 public void testAwait5_Timeout_BrokenBarrier() throws InterruptedException {
211 public void testReset_BrokenBarrier() throws InterruptedException {
256 public void testReset_Leakage() throws InterruptedException {
271 catch (InterruptedException ie) {
327 Thread t1 = new ThreadShouldThrow(InterruptedException.class) {
  /packages/apps/Gallery/tests/src/com/android/camera/
BitmapManagerUnitTests.java 91 } catch (InterruptedException ex) {
103 } catch (InterruptedException ex) {
116 } catch (InterruptedException ex) {
133 } catch (InterruptedException ex) {
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebView_HitTestResultTest.java 40 private void waitForLoading(final WebView webView, long timeout) throws InterruptedException {
62 public void testHitTestResult() throws InterruptedException {
  /dalvik/tests/053-wait-some/src/
Main.java 27 } catch (InterruptedException ie) {
37 } catch (InterruptedException ie) {
  /dalvik/tests/067-preemptive-unpark/src/
Main.java 28 } catch (InterruptedException ex) {
89 } catch (InterruptedException ex) {
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerThreadTest.java 63 } catch (InterruptedException e) {
95 } catch (InterruptedException e) {
  /libcore/luni/src/main/java/java/lang/ref/
ReferenceQueue.java 76 * @throws InterruptedException
79 public Reference<? extends T> remove() throws InterruptedException {
96 * @throws InterruptedException
100 InterruptedException {
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerHostTestUtils.java 311 * @throws InterruptedException
314 public void waitForPackageManager() throws InterruptedException, IOException {
323 throw new InterruptedException();
353 * @throws InterruptedException
356 public void waitForDeviceToComeOnline() throws InterruptedException, IOException {
366 throw new InterruptedException();
379 * @throws InterruptedException
382 public void waitForApp(String packageName) throws InterruptedException, IOException {
391 throw new InterruptedException();
415 public void runAdbRoot() throws IOException, InterruptedException {
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
PhoneTypeChoiceRecognizerEngine.java 34 protected void setupGrammar() throws IOException, InterruptedException {
49 protected void onRecognitionSuccess(RecognizerClient recognizerClient) throws InterruptedException {
97 if (Thread.interrupted()) throw new InterruptedException();
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 632 throws InterruptedException {
646 throw new InterruptedException();
662 throws InterruptedException {
684 throw new InterruptedException();
729 throws InterruptedException {
746 throw new InterruptedException();
762 throws InterruptedException {
788 throw new InterruptedException();
    [all...]
AbstractQueuedSynchronizer.java 220 * public void lockInterruptibly() throws InterruptedException {
224 * throws InterruptedException {
254 * public void await() throws InterruptedException {
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
TimerTest.java 74 } catch (InterruptedException e) {
118 } catch (InterruptedException e) {
150 } catch (InterruptedException e) {
182 } catch (InterruptedException e) {}
226 } catch (InterruptedException e) {}
277 } catch (InterruptedException e) {
286 } catch (InterruptedException e) {
299 } catch (InterruptedException e) {
310 } catch (InterruptedException e) {
331 } catch (InterruptedException e)
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
AliasActivityTest.java 44 public void testAliasActivity() throws InterruptedException {

Completed in 667 milliseconds

1 2 34 5 6 7 8 91011>>