Searched defs:corePoolSize (Results 1 – 5 of 5) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
D | Executors.java | 257 public static ScheduledExecutorService newScheduledThreadPool(int corePoolSize) { in newScheduledThreadPool() 273 int corePoolSize, ThreadFactory threadFactory) { in newScheduledThreadPool()
|
D | ThreadPoolExecutor.java | 505 private volatile int corePoolSize; field in ThreadPoolExecutor 1160 public ThreadPoolExecutor(int corePoolSize, in ThreadPoolExecutor() 1194 public ThreadPoolExecutor(int corePoolSize, in ThreadPoolExecutor() 1229 public ThreadPoolExecutor(int corePoolSize, in ThreadPoolExecutor() 1266 public ThreadPoolExecutor(int corePoolSize, in ThreadPoolExecutor() 1503 public void setCorePoolSize(int corePoolSize) { in setCorePoolSize()
|
D | ScheduledThreadPoolExecutor.java | 399 public ScheduledThreadPoolExecutor(int corePoolSize) { in ScheduledThreadPoolExecutor() 415 public ScheduledThreadPoolExecutor(int corePoolSize, in ScheduledThreadPoolExecutor() 432 public ScheduledThreadPoolExecutor(int corePoolSize, in ScheduledThreadPoolExecutor() 452 public ScheduledThreadPoolExecutor(int corePoolSize, in ScheduledThreadPoolExecutor()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ScheduledExecutorSubclassTest.java | 56 CustomExecutor(int corePoolSize) { super(corePoolSize); } in CustomExecutor() 57 CustomExecutor(int corePoolSize, RejectedExecutionHandler handler) { in CustomExecutor() 61 CustomExecutor(int corePoolSize, ThreadFactory threadFactory) { in CustomExecutor() 64 CustomExecutor(int corePoolSize, ThreadFactory threadFactory, in CustomExecutor()
|
D | ThreadPoolExecutorSubclassTest.java | 122 CustomTPE(int corePoolSize, in CustomTPE() 130 CustomTPE(int corePoolSize, in CustomTPE() 140 CustomTPE(int corePoolSize, in CustomTPE() 149 CustomTPE(int corePoolSize, in CustomTPE()
|