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

12 3 4 5 6 7 8 91011>>

  /cts/tests/src/android/view/animation/cts/
DelayedCheck.java 40 } catch (InterruptedException e) {
41 Assert.fail("unexpected InterruptedException");
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
ExchangerTest.java 36 } catch(InterruptedException e){
48 } catch(InterruptedException e){
58 } catch(InterruptedException ex) {
75 } catch(InterruptedException e){
89 } catch(InterruptedException e){
101 } catch(InterruptedException ex) {
116 } catch(InterruptedException success){
125 } catch(InterruptedException ex) {
140 } catch(InterruptedException success){
150 } catch(InterruptedException ex)
    [all...]
CountDownLatchTest.java 67 } catch(InterruptedException e){
81 } catch (InterruptedException e){
98 } catch(InterruptedException e){
112 } catch (InterruptedException e){
128 } catch(InterruptedException success){}
136 } catch (InterruptedException e){
152 } catch(InterruptedException success){}
161 } catch (InterruptedException e){
177 } catch(InterruptedException ie){
186 } catch (InterruptedException e)
    [all...]
  /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;
WaitingThread.java 133 * @throws InterruptedException if the waiting thread was interrupted
138 throws InterruptedException {
150 throw new InterruptedException("Operation interrupted");
163 throw new InterruptedException("Operation interrupted");
  /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 {
  /frameworks/base/core/java/android/os/
SystemClock.java 69 * you must handle {@link InterruptedException}.
73 * ignores {@link InterruptedException}. Use this function for delays if
101 * {@link InterruptedException}; {@link Thread#interrupt()} events are
116 catch (InterruptedException e) {
  /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/tests/CoreTests/android/core/
MonitorTest.java 43 } catch (InterruptedException ex) {
58 } catch (InterruptedException ex) {
76 } catch (InterruptedException ex) {
95 } catch (InterruptedException ex) {
133 } catch (InterruptedException ex) {
149 } catch (InterruptedException ex) {
166 } catch (InterruptedException ex) {
211 } catch (InterruptedException ex) {
231 } catch (InterruptedException ex) {
251 } catch (InterruptedException ex)
    [all...]
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerHostTests.java 160 * @throws InterruptedException if the thread was interrupted
162 public void testPushAppPrivate() throws IOException, InterruptedException {
191 * @throws InterruptedException if the thread was interrupted
195 throws IOException, InterruptedException {
215 * @throws InterruptedException if the thread was interrupted
219 throws IOException, InterruptedException {
243 * @throws InterruptedException if the thread was interrupted
245 public void testInstallAppAutoLocPrefIsAuto() throws IOException, InterruptedException {
257 * @throws InterruptedException if the thread was interrupted
259 public void testInstallAppAutoLocPrefIsInternal() throws IOException, InterruptedException {
    [all...]
  /cts/tools/cts-reference-app-lib/src/android/cts/refapp/
ReferenceAppTestCase.java 23 import java.lang.InterruptedException;
84 } catch (InterruptedException e) {
  /dalvik/libcore/concurrent/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...]
CyclicBarrier.java 41 * } catch (InterruptedException ex) {
88 * {@link InterruptedException} if they too were interrupted at about
163 throws InterruptedException, BrokenBarrierException,
175 throw new InterruptedException();
201 } catch (InterruptedException ie) {
292 * then {@link InterruptedException} is thrown and the current thread's
316 * @throws InterruptedException if the current thread was interrupted
324 public int await() throws InterruptedException, BrokenBarrierException {
355 * then {@link InterruptedException} is thrown and the current thread's
385 * @throws InterruptedException if the current thread was interrupte
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
TimerTaskTest.java 54 } catch (InterruptedException e) {
116 } catch (InterruptedException e) {
145 } catch (InterruptedException e) {
174 } catch (InterruptedException e) {
206 } catch (InterruptedException e) {
224 } catch (InterruptedException e) {
253 } catch (InterruptedException e) {
265 } 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
  /dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
MockPreferenceChangeListener.java 43 } catch (InterruptedException e) {
89 } catch (InterruptedException e) {
105 } catch (InterruptedException e) {
  /dalvik/libcore/sql/src/test/java/tests/support/
ThreadPool.java 54 protected synchronized Runnable getTask() throws InterruptedException {
84 } catch (InterruptedException ex) {
102 } catch (InterruptedException ex) {
  /packages/apps/Gallery3D/src/com/cooliris/media/
BaseCancelable.java 79 public synchronized void await() throws InterruptedException {
85 public final T get() throws InterruptedException, ExecutionException {
97 } catch (InterruptedException e) {
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
PriorityThreadFactoryTest.java 31 public void testPriority() throws InterruptedException {
40 private void priorityTest(int priority) throws InterruptedException {
53 public synchronized int getPriority() throws InterruptedException {
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 49 } catch (InterruptedException e) {
92 } catch (InterruptedException e) {
98 } catch (InterruptedException x) {
105 } catch (InterruptedException x) {
267 } catch (InterruptedException e) {
292 } catch (InterruptedException e) {
326 } catch (InterruptedException e) {
380 } catch (InterruptedException e) {
406 } catch (InterruptedException e) {
549 } catch (InterruptedException e)
    [all...]
  /dalvik/tests/050-sync-test/src/
Main.java 27 catch (InterruptedException ie) {
46 catch (InterruptedException ie) {
57 catch (InterruptedException ie) {
154 catch (InterruptedException ie) {
170 catch (InterruptedException ie) {

Completed in 2541 milliseconds

12 3 4 5 6 7 8 91011>>