Searched defs:RUNNING (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/test/compiler/8004741/
H A DTest8004741.java62 private static final int RUNNING = 1; field in class:Test8004741
102 toState(RUNNING);
125 t.waitFor(RUNNING);
/openjdk7/jdk/src/macosx/classes/com/apple/concurrent/
H A DLibDispatchSerialQueue.java32 static final int RUNNING = 0; field in class:LibDispatchSerialQueue
53 return runState != RUNNING;
64 if (runState != RUNNING) return;
/openjdk7/jdk/src/share/classes/java/lang/
H A DShutdown.java40 private static final int RUNNING = 0; field in class:Shutdown
43 private static int state = RUNNING;
100 if (state > RUNNING)
186 case RUNNING: /* Initiate shutdown */
225 case RUNNING: /* Initiate shutdown */
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanManagerMXBean.java81 RUNNING, enum constant in enum:ScanManagerMXBean.ScanState
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerTableEntry.java59 private final static int RUNNING = 3; field in class:ServerTableEntry
71 case (RUNNING ) : str = "RUNNING "; break;
217 //state = RUNNING;
254 state = RUNNING;
268 if (state == RUNNING)
288 if (state == RUNNING) {
331 // If the State in the ServerTableEntry is RUNNING and the
334 if( state == RUNNING ) {
395 if (state == RUNNING) {
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadPoolExecutor.java341 * RUNNING: Accept new tasks and process queued tasks
354 * RUNNING -> SHUTDOWN
356 * (RUNNING or SHUTDOWN) -> STOP
375 private final AtomicInteger ctl = new AtomicInteger(ctlOf(RUNNING, 0));
380 private static final int RUNNING = -1 << COUNT_BITS; field in class:ThreadPoolExecutor
840 return rs == RUNNING || (rs == SHUTDOWN && shutdownOK);

Completed in 52 milliseconds