Searched defs:busyThreadCount (Results 1 - 5 of 5) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DThreadPool.java60 private int busyThreadCount; field in class:ThreadPool
94 this.busyThreadCount = 0;
118 threads[i - busyThreadCount] = new WorkerThread(poolName, this);
119 threads[i - busyThreadCount].setDaemon(daemon);
120 threads[i - busyThreadCount].start();
128 if (currentThreadCount == busyThreadCount) {
132 t = threads[currentThreadCount - busyThreadCount - 1];
133 threads[currentThreadCount - busyThreadCount - 1] = null;
134 busyThreadCount++;
155 if (busyThreadCount
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/https/
H A DJSSThreadPool.java39 private int busyThreadCount; field in class:JSSThreadPool
67 this.busyThreadCount = 0;
90 threads[i - busyThreadCount] = new WorkerThread(poolName, this);
91 threads[i - busyThreadCount].setDaemon(daemon);
92 threads[i - busyThreadCount].start();
100 if (currentThreadCount == busyThreadCount) {
104 t = threads[currentThreadCount - busyThreadCount - 1];
105 threads[currentThreadCount - busyThreadCount - 1] = null;
106 busyThreadCount++;
121 if (busyThreadCount
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DThreadPool.java60 private int busyThreadCount; field in class:ThreadPool
94 this.busyThreadCount = 0;
118 threads[i - busyThreadCount] = new WorkerThread(poolName, this);
119 threads[i - busyThreadCount].setDaemon(daemon);
120 threads[i - busyThreadCount].start();
128 if (currentThreadCount == busyThreadCount) {
132 t = threads[currentThreadCount - busyThreadCount - 1];
133 threads[currentThreadCount - busyThreadCount - 1] = null;
134 busyThreadCount++;
155 if (busyThreadCount
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java53 private int busyThreadCount; field in class:TimerPool
76 this.busyThreadCount = 0;
101 threads[i - busyThreadCount] = new WorkerThread(name, this);
102 threads[i - busyThreadCount].setDaemon(daemon);
103 threads[i - busyThreadCount].start();
117 if (currentThreadCount == busyThreadCount) {
120 t = threads[currentThreadCount - busyThreadCount - 1];
121 threads[currentThreadCount - busyThreadCount - 1] = null;
122 busyThreadCount++;
138 while (busyThreadCount
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java53 private int busyThreadCount; field in class:TimerPool
76 this.busyThreadCount = 0;
101 threads[i - busyThreadCount] = new WorkerThread(name, this);
102 threads[i - busyThreadCount].setDaemon(daemon);
103 threads[i - busyThreadCount].start();
117 if (currentThreadCount == busyThreadCount) {
120 t = threads[currentThreadCount - busyThreadCount - 1];
121 threads[currentThreadCount - busyThreadCount - 1] = null;
122 busyThreadCount++;
138 while (busyThreadCount
[all...]

Completed in 205 milliseconds