Searched refs:currentThreadCount (Results 1 - 5 of 5) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DThreadPool.java61 private int currentThreadCount; field in class:ThreadPool
95 this.currentThreadCount = 0;
117 for (int i = currentThreadCount; i < threadsToCreate; i++) {
122 currentThreadCount = threadsToCreate;
128 if (currentThreadCount == busyThreadCount) {
132 t = threads[currentThreadCount - busyThreadCount - 1];
133 threads[currentThreadCount - busyThreadCount - 1] = null;
177 currentThreadCount--;
210 currentThreadCount--;
217 threads[currentThreadCount
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DThreadPool.java61 private int currentThreadCount; field in class:ThreadPool
95 this.currentThreadCount = 0;
117 for (int i = currentThreadCount; i < threadsToCreate; i++) {
122 currentThreadCount = threadsToCreate;
128 if (currentThreadCount == busyThreadCount) {
132 t = threads[currentThreadCount - busyThreadCount - 1];
133 threads[currentThreadCount - busyThreadCount - 1] = null;
177 currentThreadCount--;
210 currentThreadCount--;
217 threads[currentThreadCount
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/https/
H A DJSSThreadPool.java40 private int currentThreadCount; field in class:JSSThreadPool
68 this.currentThreadCount = 0;
89 for (int i = currentThreadCount; i < threadsToCreate; i++) {
94 currentThreadCount = threadsToCreate;
100 if (currentThreadCount == busyThreadCount) {
104 t = threads[currentThreadCount - busyThreadCount - 1];
105 threads[currentThreadCount - busyThreadCount - 1] = null;
134 currentThreadCount--;
170 threads[currentThreadCount - busyThreadCount - 1] = t;
179 for(int i = 0; i < currentThreadCount
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java54 private int currentThreadCount; field in class:TimerPool
77 this.currentThreadCount = 0;
100 for (int i = currentThreadCount; i < timersToCreate; i++) {
105 currentThreadCount = timersToCreate;
117 if (currentThreadCount == busyThreadCount) {
120 t = threads[currentThreadCount - busyThreadCount - 1];
121 threads[currentThreadCount - busyThreadCount - 1] = null;
179 currentThreadCount--;
214 threads[currentThreadCount - busyThreadCount - 1] = t;
325 for(int i = 0; i < currentThreadCount
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java54 private int currentThreadCount; field in class:TimerPool
77 this.currentThreadCount = 0;
100 for (int i = currentThreadCount; i < timersToCreate; i++) {
105 currentThreadCount = timersToCreate;
117 if (currentThreadCount == busyThreadCount) {
120 t = threads[currentThreadCount - busyThreadCount - 1];
121 threads[currentThreadCount - busyThreadCount - 1] = null;
179 currentThreadCount--;
214 threads[currentThreadCount - busyThreadCount - 1] = t;
325 for(int i = 0; i < currentThreadCount
[all...]

Completed in 31 milliseconds