Home
last modified time | relevance | path

Searched refs:RejectedExecutionException (Results 1 – 23 of 23) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/concurrent/
DRejectedExecutionExceptionTest.java22 import java.util.concurrent.RejectedExecutionException;
32 private class TestExecutionException extends RejectedExecutionException {
46 RejectedExecutionException exception = new TestExecutionException(); in testConstructDefault()
57 RejectedExecutionException exception = new RejectedExecutionException("test", cause); in testConstructWithMessageAndCause()
68 RejectedExecutionException exception = new RejectedExecutionException(cause); in testConstructWithCause()
/libcore/ojluni/src/main/java/java/util/concurrent/
DRejectedExecutionException.java45 public class RejectedExecutionException extends RuntimeException { class
53 public RejectedExecutionException() { } in RejectedExecutionException() method in RejectedExecutionException
63 public RejectedExecutionException(String message) { in RejectedExecutionException() method in RejectedExecutionException
75 public RejectedExecutionException(String message, Throwable cause) { in RejectedExecutionException() method in RejectedExecutionException
88 public RejectedExecutionException(Throwable cause) { in RejectedExecutionException() method in RejectedExecutionException
DThreadPoolExecutor.java2080 throw new RejectedExecutionException("Task " + r.toString() + in rejectedExecution()
DForkJoinPool.java1021 throw new RejectedExecutionException(
1822 throw new RejectedExecutionException(
2182 throw new RejectedExecutionException(); // shutdown or disabled
/libcore/ojluni/src/main/java/sun/nio/ch/
DInvoker.java192 } catch (RejectedExecutionException ree) { in invoke()
224 } catch (RejectedExecutionException ree) { in invokeIndirectly()
244 } catch (RejectedExecutionException ree) { in invokeIndirectly()
271 } catch (RejectedExecutionException ree) { in invokeOnThreadInThreadPool()
DAsynchronousChannelGroupImpl.java143 } catch (RejectedExecutionException x) {
167 } catch (RejectedExecutionException x) {
203 } catch (RejectedExecutionException rej) {
DEPollPort.java31 import java.util.concurrent.RejectedExecutionException;
147 throw new RejectedExecutionException(); in executeOnHandlerTask()
/libcore/jsr166-tests/src/test/java/jsr166/
DScheduledExecutorSubclassTest.java25 import java.util.concurrent.RejectedExecutionException;
322 } catch (RejectedExecutionException success) { in testSchedule1_RejectedExecutionException()
338 } catch (RejectedExecutionException success) { in testSchedule2_RejectedExecutionException()
354 } catch (RejectedExecutionException success) { in testSchedule3_RejectedExecutionException()
370 } catch (RejectedExecutionException success) { in testScheduleAtFixedRate1_RejectedExecutionException()
386 } catch (RejectedExecutionException success) { in testScheduleWithFixedDelay1_RejectedExecutionException()
DScheduledExecutorTest.java26 import java.util.concurrent.RejectedExecutionException;
266 } catch (RejectedExecutionException success) { in testSchedule1_RejectedExecutionException()
282 } catch (RejectedExecutionException success) { in testSchedule2_RejectedExecutionException()
298 } catch (RejectedExecutionException success) { in testSchedule3_RejectedExecutionException()
314 } catch (RejectedExecutionException success) { in testScheduleAtFixedRate1_RejectedExecutionException()
330 } catch (RejectedExecutionException success) { in testScheduleWithFixedDelay1_RejectedExecutionException()
DThreadPoolExecutorTest.java28 import java.util.concurrent.RejectedExecutionException;
1074 } catch (RejectedExecutionException success) {} in testSaturatedExecute()
1100 } catch (RejectedExecutionException success) {} in testSaturatedSubmitRunnable()
1126 } catch (RejectedExecutionException success) {} in testSaturatedSubmitCallable()
1229 } catch (RejectedExecutionException success) {} in testRejectedExecutionExceptionOnShutdown()
2031 catch (RejectedExecutionException ignore) {}
DForkJoinPoolTest.java27 import java.util.concurrent.RejectedExecutionException;
363 } catch (RejectedExecutionException success) {}
DThreadPoolExecutorSubclassTest.java27 import java.util.concurrent.RejectedExecutionException;
1157 } catch (RejectedExecutionException success) {} in testSaturatedExecute()
1258 } catch (RejectedExecutionException success) {} in testRejectedExecutionExceptionOnShutdown()
/libcore/ojluni/src/test/java/util/concurrent/tck/
DScheduledExecutorSubclassTest.java52 import java.util.concurrent.RejectedExecutionException;
346 } catch (RejectedExecutionException success) { in testSchedule1_RejectedExecutionException()
362 } catch (RejectedExecutionException success) { in testSchedule2_RejectedExecutionException()
378 } catch (RejectedExecutionException success) { in testSchedule3_RejectedExecutionException()
394 } catch (RejectedExecutionException success) { in testScheduleAtFixedRate1_RejectedExecutionException()
410 } catch (RejectedExecutionException success) { in testScheduleWithFixedDelay1_RejectedExecutionException()
DScheduledExecutorTest.java53 import java.util.concurrent.RejectedExecutionException;
290 } catch (RejectedExecutionException success) { in testSchedule1_RejectedExecutionException()
306 } catch (RejectedExecutionException success) { in testSchedule2_RejectedExecutionException()
322 } catch (RejectedExecutionException success) { in testSchedule3_RejectedExecutionException()
338 } catch (RejectedExecutionException success) { in testScheduleAtFixedRate1_RejectedExecutionException()
354 } catch (RejectedExecutionException success) { in testScheduleWithFixedDelay1_RejectedExecutionException()
DThreadPoolExecutorTest.java54 import java.util.concurrent.RejectedExecutionException;
1096 } catch (RejectedExecutionException success) {} in testSaturatedExecute()
1122 } catch (RejectedExecutionException success) {} in testSaturatedSubmitRunnable()
1148 } catch (RejectedExecutionException success) {} in testSaturatedSubmitCallable()
1251 } catch (RejectedExecutionException success) {} in testRejectedExecutionExceptionOnShutdown()
2048 catch (RejectedExecutionException ignore) {}
DForkJoinPoolTest.java53 import java.util.concurrent.RejectedExecutionException;
381 } catch (RejectedExecutionException success) {}
DThreadPoolExecutorSubclassTest.java52 import java.util.concurrent.RejectedExecutionException;
1179 } catch (RejectedExecutionException success) {} in testSaturatedExecute()
1280 } catch (RejectedExecutionException success) {} in testRejectedExecutionExceptionOnShutdown()
DCompletableFutureTest.java62 import java.util.concurrent.RejectedExecutionException;
610 final RejectedExecutionException ex = new RejectedExecutionException();
/libcore/ojluni/src/main/java/java/util/concurrent/locks/
DAbstractQueuedSynchronizer.java43 import java.util.concurrent.RejectedExecutionException;
1579 } catch (RejectedExecutionException ex) { in awaitUninterruptibly()
1624 } catch (RejectedExecutionException ex) { in await()
DAbstractQueuedLongSynchronizer.java43 import java.util.concurrent.RejectedExecutionException;
1213 } catch (RejectedExecutionException ex) { in awaitUninterruptibly()
1258 } catch (RejectedExecutionException ex) { in await()
/libcore/
Dopenjdk_java_files.bp1015 "ojluni/src/main/java/java/util/concurrent/RejectedExecutionException.java",
DEXPECTED_UPSTREAM1066 …/concurrent/RejectedExecutionException.java,jdk17u/jdk-17.0.6-ga,src/java.base/share/classes/java/…
/libcore/api/
Dcurrent.txt16244 public class RejectedExecutionException extends java.lang.RuntimeException {
16245 ctor public RejectedExecutionException();
16246 ctor public RejectedExecutionException(String);
16247 ctor public RejectedExecutionException(String, Throwable);
16248 ctor public RejectedExecutionException(Throwable);