Searched refs:maximumPoolSize (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java51 * maximumPoolSize (see {@link #getMaximumPoolSize}).
57 * maximumPoolSize threads running, a new thread will be created only
58 * if the queue is full. By setting corePoolSize and maximumPoolSize
60 * maximumPoolSize to an essentially unbounded value such as {@code
120 * this would exceed maximumPoolSize, in which case, the task will be
143 * threads will ever be created. (And the value of the maximumPoolSize
511 private volatile int maximumPoolSize; field in class:ThreadPoolExecutor
859 * maximumPoolSize. (A boolean indicator is used here rather than a
880 wc >= (core ? corePoolSize : maximumPoolSize))
996 * 1. There are more than maximumPoolSize worker
1160 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) argument
1194 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory) argument
1229 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) argument
1266 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) argument
1628 setMaximumPoolSize(int maximumPoolSize) argument
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DThreadPoolExecutorSubclassTest.java123 int maximumPoolSize,
127 super(corePoolSize, maximumPoolSize, keepAliveTime, unit,
131 int maximumPoolSize,
136 super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue,
141 int maximumPoolSize,
146 super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue,
150 int maximumPoolSize,
156 super(corePoolSize, maximumPoolSize, keepAliveTime, unit,
706 * Constructor throws if maximumPoolSize is less than zero
716 * Constructor throws if maximumPoolSize i
122 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) argument
130 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory) argument
140 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) argument
149 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) argument
[all...]

Completed in 17 milliseconds