HomeSort by relevance Sort by last modified time
    Searched refs:InterruptedException (Results 26 - 50 of 764) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
ConditionVariable.java 99 catch (InterruptedException e) {
130 catch (InterruptedException e) {
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 36 } catch (InterruptedException e) {
56 } catch (InterruptedException e) {
102 public void test_joinWithSpuriousInterruption() throws InterruptedException {
119 } catch (InterruptedException expected) {
160 } catch (InterruptedException e) {
182 } catch (InterruptedException e) {
183 fail("Unexpected InterruptedException was thrown");
196 } catch(InterruptedException ie) {
206 } catch(InterruptedException e) {
207 fail("Unexpected InterruptedException was thrown")
    [all...]
OldObjectTest.java 107 } catch(InterruptedException ex) {
108 fail("InterruptedException was thrown.");
120 } catch(InterruptedException e) {
121 fail("InterruptedException was thrown.");
153 } catch (InterruptedException ex) {
173 } catch(InterruptedException ex) {
174 fail("InterruptedException was thrown.");
186 } catch(InterruptedException e) {
187 fail("InterruptedException was thrown.");
200 } catch(InterruptedException ex)
    [all...]
OldAndroidMonitorTest.java 39 } catch (InterruptedException ex) {
54 } catch (InterruptedException ex) {
72 } catch (InterruptedException ex) {
91 } catch (InterruptedException ex) {
129 } catch (InterruptedException ex) {
145 } catch (InterruptedException ex) {
162 } catch (InterruptedException ex) {
207 } catch (InterruptedException ex) {
227 } catch (InterruptedException ex) {
247 } catch (InterruptedException ex)
    [all...]
  /cts/tests/src/android/content/cts/
HighPriorityBroadcastReceiver.java 32 } catch (InterruptedException e) {
  /cts/tests/src/android/view/animation/cts/
DelayedCheck.java 40 } catch (InterruptedException e) {
41 Assert.fail("unexpected InterruptedException");
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
PoolEntryRequest.java 45 * an {@link InterruptedException} is thrown.
55 * @throws InterruptedException
60 TimeUnit tunit) throws InterruptedException, ConnectionPoolTimeoutException;
  /external/guava/src/com/google/common/util/concurrent/
AbstractCheckedFuture.java 46 * Translate from an {@link InterruptedException},
50 * The {@code e} parameter can be an instance of {@link InterruptedException},
62 } catch (InterruptedException e) {
79 } catch (InterruptedException e) {
103 public V get() throws InterruptedException, ExecutionException {
107 public V get(long timeout, TimeUnit unit) throws InterruptedException,
ForwardingFuture.java 57 public V get() throws InterruptedException, ExecutionException {
63 throws InterruptedException, ExecutionException, TimeoutException {
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
BackgroundThread.java 40 } catch (InterruptedException ie) {
  /cts/tests/tests/app/src/android/app/cts/
LocalActivityManagerTest.java 72 public void testDispatchResume() throws InterruptedException {
78 private void waitForResult() throws InterruptedException {
113 public void testStartActivity() throws InterruptedException {
131 public void testDispatchCreate() throws InterruptedException {
142 public void testDispatchStop() throws InterruptedException {
153 public void testDispatchPauseTrue() throws InterruptedException {
164 public void testDispatchPauseFalse() throws InterruptedException {
175 public void testSaveInstanceState() throws InterruptedException {
186 public void testDispatchDestroy() throws InterruptedException {
197 public void testRemoveAllActivities() throws InterruptedException {
    [all...]
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerHostTests.java 158 * @throws InterruptedException if the thread was interrupted
167 public void testPushAppPrivate() throws IOException, InterruptedException, InstallException,
197 * @throws InterruptedException if the thread was interrupted
207 throws IOException, InterruptedException, InstallException, TimeoutException,
227 * @throws InterruptedException if the thread was interrupted
237 throws IOException, InterruptedException, TimeoutException, AdbCommandRejectedException,
261 * @throws InterruptedException if the thread was interrupted
269 public void testInstallAppAutoLocPrefIsAuto() throws IOException, InterruptedException,
281 * @throws InterruptedException if the thread was interrupted
289 public void testInstallAppAutoLocPrefIsInternal() throws IOException, InterruptedException,
    [all...]
  /cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechWrapper.java 55 private boolean initTts() throws InterruptedException {
59 private boolean initTts(String engine) throws InterruptedException {
63 private boolean initTts(TextToSpeech tts) throws InterruptedException {
72 public boolean waitForComplete(String utteranceId) throws InterruptedException {
85 throws InterruptedException {
95 throws InterruptedException {
122 public boolean waitForInit() throws InterruptedException {
158 throws InterruptedException {
  /cts/tools/cts-reference-app-lib/src/android/cts/refapp/
ReferenceAppTestCase.java 23 import java.lang.InterruptedException;
84 } catch (InterruptedException e) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/process/
SystemProcessTest.java 40 fail("Should throw InterruptedException");
41 } catch (InterruptedException e) {
47 } catch (InterruptedException e) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 35 } catch (InterruptedException e) {
78 } catch (InterruptedException e) {
84 } catch (InterruptedException x) {
91 } catch (InterruptedException x) {
167 } catch (InterruptedException e) {
186 } catch (InterruptedException e) {
233 } catch (InterruptedException e) {
253 } catch (InterruptedException e) {
326 } catch (InterruptedException e) {
336 } catch (InterruptedException e)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TimerTaskTest.java 48 } catch (InterruptedException e) {
98 } catch (InterruptedException e) {
127 } catch (InterruptedException e) {
156 } catch (InterruptedException e) {
182 } catch (InterruptedException e) {
200 } catch (InterruptedException e) {
223 } catch (InterruptedException e) {
235 } catch (InterruptedException e) {
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
AwaitableCompletionListener.java 39 } catch (InterruptedException e) {
47 public void awaitOneCallback(long timeout, TimeUnit unit) throws InterruptedException,
AwaitableErrorListener.java 47 } catch (InterruptedException e) {
55 public void awaitOneCallback(long timeout, TimeUnit unit) throws InterruptedException,
  /libcore/luni/src/main/java/java/util/concurrent/
CountDownLatch.java 49 * void main() throws InterruptedException {
75 * } catch (InterruptedException ex) {} // return;
92 * void main() throws InterruptedException {
114 * } catch (InterruptedException ex) {} // return;
200 * then {@link InterruptedException} is thrown and the current thread's
203 * @throws InterruptedException if the current thread is interrupted
206 public void await() throws InterruptedException {
237 * then {@link InterruptedException} is thrown and the current thread's
248 * @throws InterruptedException if the current thread is interrupted
252 throws InterruptedException {
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
TimerTaskTest.java 50 } catch (InterruptedException e) {
100 } catch (InterruptedException e) {
129 } catch (InterruptedException e) {
158 } catch (InterruptedException e) {
184 } catch (InterruptedException e) {
202 } catch (InterruptedException e) {
225 } catch (InterruptedException e) {
237 } catch (InterruptedException e) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DictionaryPool.java 44 public DictAndProximity take() throws InterruptedException {
62 } catch (InterruptedException e) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/monitorenter/
Test_monitorenter.java 30 * @throws InterruptedException
32 public void testN1() throws InterruptedException {
50 * @throws InterruptedException
52 public void testN2() throws InterruptedException {
118 } catch (InterruptedException e) {
135 } catch (InterruptedException e) {
  /dalvik/tests/030-bad-finalizer/src/
BadFinalizer.java 10 } catch (InterruptedException ie) {
  /external/proguard/src/proguard/gui/
SwingUtil.java 44 throws InterruptedException, InvocationTargetException

Completed in 6456 milliseconds

12 3 4 5 6 7 8 91011>>