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

1 2 3 4 5 6 78 91011>>

  /frameworks/base/tests/CoreTests/android/core/
InetAddrTest.java 93 } catch (InterruptedException ex) {
DatagramTest.java 65 } catch (InterruptedException ex) {
146 } catch (InterruptedException ex) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapAuthenticator.java 84 } catch (InterruptedException e) {
  /packages/apps/Calendar/src/com/android/calendar/
EventLoader.java 162 } catch (InterruptedException ex) {
163 // The put() method fails with InterruptedException if the
192 } catch (InterruptedException ex) {
243 } catch (InterruptedException ex) {
244 // The put() method fails with InterruptedException if the
269 } catch (InterruptedException ex) {
270 // The put() method fails with InterruptedException if the
  /packages/apps/IM/src/com/android/im/imps/
PresencePollingManager.java 96 } catch (InterruptedException e) {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
BarrierConsumer.java 61 } catch (InterruptedException ex) {
SingleThreadNamedTaskExecutor.java 79 } catch (InterruptedException ex) {
  /packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/
SlowSuggestionProvider.java 52 } catch (InterruptedException ex) {
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerEngine.java 88 abstract protected void setupGrammar() throws IOException, InterruptedException;
91 throws InterruptedException;
171 if (Thread.interrupted()) throw new InterruptedException();
199 } catch (InterruptedException e) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/wizards/newproject/
StubProjectWizard.java 111 throws InvocationTargetException, InterruptedException {
  /cts/tests/tests/content/src/android/content/cts/
AsyncQueryHandlerTest.java 139 public void testStartInsert() throws InterruptedException {
200 public void testStartQuery() throws InterruptedException {
260 public void testStartUpdate() throws InterruptedException {
328 public void testStartDelete() throws InterruptedException {
499 public synchronized boolean hadInserted(long timeout) throws InterruptedException {
509 public synchronized boolean hadUpdated(long timeout) throws InterruptedException {
517 public synchronized boolean hadDeleted(long timeout) throws InterruptedException {
525 public synchronized boolean hadQueried(long timeout) throws InterruptedException {
556 private MockAsyncQueryHandler createAsyncQueryHandlerSync() throws InterruptedException {
615 public synchronized void waitForComplete() throws InterruptedException {
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
Executors.java 605 throws InterruptedException {
618 throws InterruptedException {
623 throws InterruptedException {
627 throws InterruptedException, ExecutionException {
632 throws InterruptedException, ExecutionException, TimeoutException {
SynchronousQueue.java     [all...]
  /external/guava/src/com/google/common/util/concurrent/
Futures.java 78 } catch (InterruptedException ignored) {
96 } catch (InterruptedException ignored) {
132 * {@link InterruptedException}, a {@link CancellationException}, or an
373 public O get() throws InterruptedException, ExecutionException {
378 public O get(long timeout, TimeUnit unit) throws InterruptedException,
551 } catch (InterruptedException e) {
Executors.java 125 } catch (InterruptedException ignored) {
301 throws InterruptedException {
SimpleTimeLimiter.java 125 } catch (InterruptedException e) {
154 if (exType == InterruptedException.class) {
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
DelayQueueTest.java 437 } catch (InterruptedException e){
452 } catch (InterruptedException success){ }
478 } catch (InterruptedException success){
487 catch (InterruptedException ie) {
514 } catch (InterruptedException e){
529 } catch (InterruptedException e){
535 * Interrupted timed poll throws InterruptedException instead of
547 } catch (InterruptedException success){
556 catch (InterruptedException ie) {
574 } catch (InterruptedException success) {
    [all...]
ReentrantReadWriteLockTest.java 34 } catch(InterruptedException success){}
50 } catch(InterruptedException success){}
168 } catch(InterruptedException success){}
194 } catch(InterruptedException success){}
217 } catch(InterruptedException success){}
243 } catch(InterruptedException success){}
803 catch(InterruptedException success) {
835 catch(InterruptedException success) {
946 catch(InterruptedException e) {
1039 catch(InterruptedException success)
    [all...]
PriorityBlockingQueueTest.java 399 } catch (InterruptedException e){
414 } catch (InterruptedException success){ }
440 } catch (InterruptedException success){
449 catch (InterruptedException ie) {
476 } catch (InterruptedException e){
491 } catch (InterruptedException e){
497 * Interrupted timed poll throws InterruptedException instead of
509 } catch (InterruptedException success){
518 catch (InterruptedException ie) {
536 } catch (InterruptedException success) { }
    [all...]
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/
Thread.java 861 * {@link InterruptedException}.
968 * @throws InterruptedException if <code>interrupt()</code> was called for
975 public final void join() throws InterruptedException
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
AndroidDebugBridge.java 599 } catch (InterruptedException e) {
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
PendingIntentTest.java 107 public void testGetActivity() throws InterruptedException, CanceledException {
154 public void testGetBroadcast() throws InterruptedException, CanceledException {
183 public void testGetService() throws InterruptedException, CanceledException {
238 public void testSend() throws InterruptedException, CanceledException {
264 public void testSendWithParamInt() throws InterruptedException, CanceledException {
301 public void testSendWithParamContextIntIntent() throws InterruptedException, CanceledException {
333 public void testSendWithParamIntOnFinishedHandler() throws InterruptedException,
391 public void testSendWithParamContextIntIntentOnFinishedHandler() throws InterruptedException,
  /cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechTest.java 62 public boolean waitForInit() throws InterruptedException {
93 public boolean waitForComplete() throws InterruptedException {
139 * @throws InterruptedException
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 301 * then {@link InterruptedException} is thrown and the current thread's
308 * @throws InterruptedException if the current thread is interrupted
310 public void lockInterruptibly() throws InterruptedException {
392 * then {@link InterruptedException} is thrown and the current thread's
410 * @throws InterruptedException if the current thread is interrupted
414 public boolean tryLock(long timeout, TimeUnit unit) throws InterruptedException {
457 * InterruptedException} will be thrown, and the thread's
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListManagedCursorTest.java 148 } catch (InterruptedException e) {
174 } catch (InterruptedException e) {

Completed in 1511 milliseconds

1 2 3 4 5 6 78 91011>>