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

1 2 3

  /libcore/ojluni/src/main/java/java/util/concurrent/
RejectedExecutionException.java 45 public class RejectedExecutionException extends RuntimeException {
49 * Constructs a {@code RejectedExecutionException} with no detail message.
53 public RejectedExecutionException() { }
56 * Constructs a {@code RejectedExecutionException} with the
63 public RejectedExecutionException(String message) {
68 * Constructs a {@code RejectedExecutionException} with the
75 public RejectedExecutionException(String message, Throwable cause) {
80 * Constructs a {@code RejectedExecutionException} with the
88 public RejectedExecutionException(Throwable cause) {
  /frameworks/base/core/java/android/os/
HandlerExecutor.java 24 import java.util.concurrent.RejectedExecutionException;
42 throw new RejectedExecutionException(mHandler + " is shutting down");
  /external/dagger2/compiler/src/it/producers-functional-tests/src/test/java/producerstest/badexecutor/
BadExecutorTest.java 8 import java.util.concurrent.RejectedExecutionException;
17 /** This test verifies behavior when the executor throws {@link RejectedExecutionException}. */
46 assertThat(e.getCause()).isInstanceOf(RejectedExecutionException.class);
56 assertThat(e.getCause()).isInstanceOf(RejectedExecutionException.class);
66 assertThat(e.getCause()).isInstanceOf(RejectedExecutionException.class);
  /external/guava/guava/src/com/google/common/util/concurrent/
ListenableFuture.java 23 import java.util.concurrent.RejectedExecutionException;
99 * RejectedExecutionException} or an exception thrown by {@linkplain
131 * @throws RejectedExecutionException if we tried to execute the listener
ListeningExecutorService.java 24 import java.util.concurrent.RejectedExecutionException;
38 * @throws RejectedExecutionException {@inheritDoc}
45 * @throws RejectedExecutionException {@inheritDoc}
52 * @throws RejectedExecutionException {@inheritDoc}
70 * @throws RejectedExecutionException {@inheritDoc}
91 * @throws RejectedExecutionException {@inheritDoc}
  /external/mockito/src/test/java/org/mockitousage/bugs/
MultithreadedStubbingHalfManualTest.java 15 import java.util.concurrent.RejectedExecutionException;
87 } catch (RejectedExecutionException ex) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiStateTracker.java 25 import java.util.concurrent.RejectedExecutionException;
51 } catch (RejectedExecutionException e) {
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
InactivityTimer.java 26 import java.util.concurrent.RejectedExecutionException;
57 } catch (RejectedExecutionException ree) {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
SerializingExecutorTest.java 31 import java.util.concurrent.RejectedExecutionException;
153 throw new RejectedExecutionException();
167 } catch (RejectedExecutionException expected) {}
MoreExecutorsTest.java 69 import java.util.concurrent.RejectedExecutionException;
215 fail("Should have encountered RejectedExecutionException");
216 } catch (RejectedExecutionException ex) {
232 fail("Should have encountered RejectedExecutionException");
233 } catch (RejectedExecutionException ex) {
258 } catch (RejectedExecutionException expected) {}
  /libcore/ojluni/src/main/java/sun/nio/ch/
Invoker.java 192 } catch (RejectedExecutionException ree) {
224 } catch (RejectedExecutionException ree) {
244 } catch (RejectedExecutionException ree) {
271 } catch (RejectedExecutionException ree) {
EPollPort.java 31 import java.util.concurrent.RejectedExecutionException;
147 throw new RejectedExecutionException();
AsynchronousChannelGroupImpl.java 143 } catch (RejectedExecutionException x) {
167 } catch (RejectedExecutionException x) {
203 } catch (RejectedExecutionException rej) {
  /packages/apps/Dialer/java/com/android/dialer/app/voicemail/
VoicemailAudioManager.java 25 import java.util.concurrent.RejectedExecutionException;
59 throw new RejectedExecutionException("Could not capture audio focus.");
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoThumbnailFragment.java 43 import java.util.concurrent.RejectedExecutionException;
393 } catch (RejectedExecutionException localRejectedExecutionException) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/archives/
WriteableArchive.java 45 import java.util.concurrent.RejectedExecutionException;
272 } catch (RejectedExecutionException e) {
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsService.java 31 import java.util.concurrent.RejectedExecutionException;
348 } catch (RejectedExecutionException e) {
  /packages/apps/Contacts/src/com/android/contacts/vcard/
VCardService.java 35 import java.util.concurrent.RejectedExecutionException;
228 } catch (RejectedExecutionException e) {
  /packages/apps/TV/src/com/android/tv/util/images/
ImageLoader.java 43 import java.util.concurrent.RejectedExecutionException;
266 } catch (RejectedExecutionException e) {
  /libcore/jsr166-tests/src/test/java/jsr166/
ScheduledExecutorSubclassTest.java 25 import java.util.concurrent.RejectedExecutionException;
312 * execute throws RejectedExecutionException if shutdown
322 } catch (RejectedExecutionException success) {
328 * schedule throws RejectedExecutionException if shutdown
338 } catch (RejectedExecutionException success) {
344 * schedule callable throws RejectedExecutionException if shutdown
354 } catch (RejectedExecutionException success) {
360 * scheduleAtFixedRate throws RejectedExecutionException if shutdown
370 } catch (RejectedExecutionException success) {
376 * scheduleWithFixedDelay throws RejectedExecutionException if shutdow
    [all...]
ScheduledExecutorTest.java 26 import java.util.concurrent.RejectedExecutionException;
256 * execute throws RejectedExecutionException if shutdown
266 } catch (RejectedExecutionException success) {
272 * schedule throws RejectedExecutionException if shutdown
282 } catch (RejectedExecutionException success) {
288 * schedule callable throws RejectedExecutionException if shutdown
298 } catch (RejectedExecutionException success) {
304 * scheduleAtFixedRate throws RejectedExecutionException if shutdown
314 } catch (RejectedExecutionException success) {
320 * scheduleWithFixedDelay throws RejectedExecutionException if shutdow
    [all...]
ThreadPoolExecutorTest.java 28 import java.util.concurrent.RejectedExecutionException;
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
ImageCaptureManager.java 46 import java.util.concurrent.RejectedExecutionException;
712 } catch (RejectedExecutionException e) {
  /packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
FileCopyUiTest.java 44 import java.util.concurrent.RejectedExecutionException;
FileDeleteUiTest.java 44 import java.util.concurrent.RejectedExecutionException;

Completed in 662 milliseconds

1 2 3