/libcore/luni/src/test/java/libcore/java/util/concurrent/ |
D | RejectedExecutionExceptionTest.java | 22 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/ |
D | RejectedExecutionException.java | 45 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
|
D | ThreadPoolExecutor.java | 2080 throw new RejectedExecutionException("Task " + r.toString() + in rejectedExecution()
|
D | ForkJoinPool.java | 1021 throw new RejectedExecutionException( 1822 throw new RejectedExecutionException( 2182 throw new RejectedExecutionException(); // shutdown or disabled
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | Invoker.java | 192 } catch (RejectedExecutionException ree) { in invoke() 224 } catch (RejectedExecutionException ree) { in invokeIndirectly() 244 } catch (RejectedExecutionException ree) { in invokeIndirectly() 271 } catch (RejectedExecutionException ree) { in invokeOnThreadInThreadPool()
|
D | AsynchronousChannelGroupImpl.java | 143 } catch (RejectedExecutionException x) { 167 } catch (RejectedExecutionException x) { 203 } catch (RejectedExecutionException rej) {
|
D | EPollPort.java | 31 import java.util.concurrent.RejectedExecutionException; 147 throw new RejectedExecutionException(); in executeOnHandlerTask()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ScheduledExecutorSubclassTest.java | 25 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()
|
D | ScheduledExecutorTest.java | 26 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()
|
D | ThreadPoolExecutorTest.java | 28 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) {}
|
D | ForkJoinPoolTest.java | 27 import java.util.concurrent.RejectedExecutionException; 363 } catch (RejectedExecutionException success) {}
|
D | ThreadPoolExecutorSubclassTest.java | 27 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/ |
D | ScheduledExecutorSubclassTest.java | 52 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()
|
D | ScheduledExecutorTest.java | 53 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()
|
D | ThreadPoolExecutorTest.java | 54 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) {}
|
D | ForkJoinPoolTest.java | 53 import java.util.concurrent.RejectedExecutionException; 381 } catch (RejectedExecutionException success) {}
|
D | ThreadPoolExecutorSubclassTest.java | 52 import java.util.concurrent.RejectedExecutionException; 1179 } catch (RejectedExecutionException success) {} in testSaturatedExecute() 1280 } catch (RejectedExecutionException success) {} in testRejectedExecutionExceptionOnShutdown()
|
D | CompletableFutureTest.java | 62 import java.util.concurrent.RejectedExecutionException; 610 final RejectedExecutionException ex = new RejectedExecutionException();
|
/libcore/ojluni/src/main/java/java/util/concurrent/locks/ |
D | AbstractQueuedSynchronizer.java | 43 import java.util.concurrent.RejectedExecutionException; 1579 } catch (RejectedExecutionException ex) { in awaitUninterruptibly() 1624 } catch (RejectedExecutionException ex) { in await()
|
D | AbstractQueuedLongSynchronizer.java | 43 import java.util.concurrent.RejectedExecutionException; 1213 } catch (RejectedExecutionException ex) { in awaitUninterruptibly() 1258 } catch (RejectedExecutionException ex) { in await()
|
/libcore/ |
D | openjdk_java_files.bp | 1015 "ojluni/src/main/java/java/util/concurrent/RejectedExecutionException.java",
|
D | EXPECTED_UPSTREAM | 1066 …/concurrent/RejectedExecutionException.java,jdk17u/jdk-17.0.6-ga,src/java.base/share/classes/java/…
|
/libcore/api/ |
D | current.txt | 16244 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);
|