Searched defs:running (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DSession.java42 * running VM.
50 boolean running = true; // Set false by JDIEventSource field in class:Session
66 * Determine if VM is interrupted, i.e, present and not running.
H A DChildSession.java237 private boolean running = true; field in class:ChildSession.OutputReader
256 while (running && (count = stream.read(buffer, 0, 512)) != -1) {
287 private boolean running = true; field in class:ChildSession.InputWriter
300 while (running) {
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DFinalizer.java145 private volatile boolean running;
147 if (running)
149 running = true;
162 private volatile boolean running;
164 if (running)
166 running = true;
179 private volatile boolean running; field in class:Finalizer.FinalizerThread
184 if (running)
186 running = true;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTimerQueue.java56 private volatile boolean running; field in class:TimerQueue
94 if (! running) {
110 running = true;
169 while (running) {
213 running = false;
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractDataLine.java62 protected boolean running = false; field in class:AbstractDataLine
192 running = true;
219 running = false;
242 // Note that the 'running' variable is true between calls to
245 // the variable names at this point, since 'running' is accessed
295 * running is true after start is called and before stop is called,
305 return running;
419 * This should also stop the line. The closed line should not be running or active.
H A DRealTimeSequencer.java107 * True if the sequence is running.
109 private boolean running = false; field in class:RealTimeSequencer
251 // already running: return quietly
252 if (running == true) {
271 // not running; just return
272 if (running == false) {
273 if (Printer.trace) Printer.trace("<< RealTimeSequencer: stop() not running!");
285 return running;
845 running = false;
878 if (!running) {
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp528 // same architecture as Hotspot is running on
591 // Returns true if we are running in a headless jre.
892 State running() { function in class:os::SuspendResume
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_solinux.c82 * The vm selection options are not passed to the running
303 * On linux, if a binary is running as sgid or suid, glibc sets
308 * loop, here and further downstream. Therefore, if we are running sgid or
350 * First, determine if we are running the desired data model. If we
351 * are running the desired data model, all the error messages
353 * output. However, if we are not running the desired data model,
369 int running = CURRENT_DATA_MODEL; local
371 int wanted = running; /* What data mode is being
447 if (wanted == running) {
488 if (running !
[all...]
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c87 * The vm selection options are not passed to the running
375 * First, determine if we are running the desired data model. If we
376 * are running the desired data model, all the error messages
378 * output. However, if we are not running the desired data model,
394 int running = CURRENT_DATA_MODEL; local
396 int wanted = running; /* What data mode is being
460 if (wanted == running) {
500 if (running != wanted) {
550 (running== 64) ? CPU_TYPE_X86_64 : CPU_TYPE_X86 };
565 if (running !
[all...]
/openjdk7/jdk/src/windows/native/com/sun/management/
H A DOperatingSystem_md.c383 /* printf("performance counters. If you are running on Windows 2003"); */
871 static BOOL running, inited; local
875 if (running) {
922 running = true;
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c117 * The vm selection options are not passed to the running
154 * | is running and acceptable
196 * First, determine if we are running the desired data model. If we
197 * are running the desired data model, all the error messages
199 * output. However, if we are not running the desired data model,
224 int running = /* What data model is being ILP32 => local
232 int wanted = running; /* What data mode is being
307 if (wanted == running) {
329 if (running != wanted) {
389 * current running dat
[all...]
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c177 int running = CURRENT_DATA_MODEL; local
179 int wanted = running;
192 if (running != wanted) {
921 * Resolve the real path to the currently running launcher.

Completed in 66 milliseconds