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

1 2

  /libcore/luni/src/main/java/java/util/concurrent/
RejectedExecutionException.java 16 public class RejectedExecutionException extends RuntimeException {
20 * Constructs a {@code RejectedExecutionException} with no detail message.
24 public RejectedExecutionException() { }
27 * Constructs a {@code RejectedExecutionException} with the
34 public RejectedExecutionException(String message) {
39 * Constructs a {@code RejectedExecutionException} with the
46 public RejectedExecutionException(String message, Throwable cause) {
51 * Constructs a {@code RejectedExecutionException} with the
59 public RejectedExecutionException(Throwable cause) {
ThreadPoolExecutor.java 183 * handler throws a runtime {@link RejectedExecutionException} upon
    [all...]
ForkJoinPool.java 19 import java.util.concurrent.RejectedExecutionException;
126 * {@link RejectedExecutionException}) only when the pool is shut down
    [all...]
ForkJoinTask.java 19 import java.util.concurrent.RejectedExecutionException;
65 * RejectedExecutionException} stemming from internal resource
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ListenableFuture.java 23 import java.util.concurrent.RejectedExecutionException;
95 * RejectedExecutionException} or an exception thrown by {@linkplain
119 * @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}
65 * @throws RejectedExecutionException {@inheritDoc}
81 * @throws RejectedExecutionException {@inheritDoc}
MoreExecutors.java 28 import java.util.concurrent.RejectedExecutionException;
217 * RejectedExecutionException, although a subset of the tasks may already
320 * @throws RejectedExecutionException if the executor has been previously
327 throw new RejectedExecutionException("Executor already shutdown");
  /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/
MoreExecutorsTest.java 36 import java.util.concurrent.RejectedExecutionException;
174 fail("Should have encountered RejectedExecutionException");
175 } catch (RejectedExecutionException ex) {
191 fail("Should have encountered RejectedExecutionException");
192 } catch (RejectedExecutionException ex) {
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoThumbnailFragment.java 43 import java.util.concurrent.RejectedExecutionException;
393 } catch (RejectedExecutionException localRejectedExecutionException) {
  /libcore/jsr166-tests/src/test/java/jsr166/
ScheduledExecutorTest.java 197 * execute throws RejectedExecutionException if shutdown
206 } catch (RejectedExecutionException success) {
214 * schedule throws RejectedExecutionException if shutdown
223 } catch (RejectedExecutionException success) {
230 * schedule callable throws RejectedExecutionException if shutdown
239 } catch (RejectedExecutionException success) {
246 * scheduleAtFixedRate throws RejectedExecutionException if shutdown
255 } catch (RejectedExecutionException success) {
262 * scheduleWithFixedDelay throws RejectedExecutionException if shutdown
271 } catch (RejectedExecutionException success)
    [all...]
ScheduledExecutorSubclassTest.java 247 * execute throws RejectedExecutionException if shutdown
256 } catch (RejectedExecutionException success) {
264 * schedule throws RejectedExecutionException if shutdown
273 } catch (RejectedExecutionException success) {
280 * schedule callable throws RejectedExecutionException if shutdown
289 } catch (RejectedExecutionException success) {
296 * scheduleAtFixedRate throws RejectedExecutionException if shutdown
305 } catch (RejectedExecutionException success) {
312 * scheduleWithFixedDelay throws RejectedExecutionException if shutdown
321 } catch (RejectedExecutionException success)
    [all...]
ForkJoinPoolTest.java 21 import java.util.concurrent.RejectedExecutionException;
271 } catch (RejectedExecutionException ok) {
344 } catch (RejectedExecutionException success) {}
    [all...]
ThreadPoolExecutorTest.java     [all...]
ThreadPoolExecutorSubclassTest.java     [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
ImageCaptureManager.java 46 import java.util.concurrent.RejectedExecutionException;
686 } catch (RejectedExecutionException e) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
VCardService.java 43 import java.util.concurrent.RejectedExecutionException;
271 } catch (RejectedExecutionException e) {
  /packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailPlaybackPresenter.java 38 import java.util.concurrent.RejectedExecutionException;
472 // Can throw RejectedExecutionException
482 // Can throw RejectedExecutionException
484 } catch (RejectedExecutionException e) {
  /external/smack/src/com/kenai/jbosh/
BOSHClient.java 30 import java.util.concurrent.RejectedExecutionException;
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/5/
android.jar 

Completed in 482 milliseconds

1 2