Searched refs:waiting (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadExecutionSynchronizer.java34 private boolean waiting; field in class:ThreadExecutionSynchronizer
39 waiting = false;
48 // the thread which is waiting here.
51 if (!waiting) {
52 waiting = true;
61 waiting = false;
/openjdk7/jdk/test/com/sun/jdi/
H A DPopAndInvokeTest.java41 static boolean waiting = false; field in class:PopAndInvokeTarg
52 if (waiting) {
55 waiting = true;
151 Field waiting = targetClass.fieldByName("waiting");
153 // Wait until debuggee enters the 'waiting' method.
154 BooleanValue bv= (BooleanValue)targetClass.getValue(waiting);
163 // debuggee has entered the waiting method
H A DJdbLockTest.sh56 // At this bkpt, sleeper should be waiting on $classname.jj
84 # and the sleeper thread is waiting for it.
H A DShellScaffold.sh595 # isn't the next prompt we are waiting for after the cont completes.
645 msg1=`echo At start: cmd/size/waiting : $* / $fileSize / \`date\``
660 echo "--DEBUG: "done size/waiting : / $newFileSize / `date` >& 2
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DServerNotifs.java101 synchronized(waiting) {
107 waiting.wait(remainingTime);
156 synchronized(waiting) {
158 waiting.notify();
169 private static int[] waiting = new int[0]; field in class:ServerNotifs
H A DNotificationBufferDeadlockTest.java176 if (!countListener.waiting(MAX_WAITING_TIME)) {
284 public boolean waiting(long timeout) { method in class:NotificationBufferDeadlockTest.MyListener
/openjdk7/jdk/test/java/awt/KeyboardFocusmanager/TypeAhead/
H A DTestDialogTypeAhead.java252 int waiting = 0; field in class:TestDialogTypeAhead.Semaphore
259 waiting++;
261 waiting--;
267 waiting++;
269 waiting--;
273 if (waiting > 0) {
/openjdk7/jdk/test/java/lang/management/MemoryMXBean/
H A DLowMemoryTest.java183 private static boolean waiting = false; // No thread is waiting. field in class:LowMemoryTest
185 // Synchronizes two thread. If no thread is waiting then wait
187 // is waiting then send notification.
192 if (waiting == false) {
193 waiting = true;
201 waiting = false;
245 // If sweeper thread is waiting then send notify
283 // If Allocater thread is waiting wait send notify
/openjdk7/jdk/test/javax/management/monitor/
H A DThreadPoolTest.java149 if (!waiter.waiting(MAX_WAITING_TIME)) {
215 public boolean waiting(long timeout) { method in class:ThreadPoolTest.Waiter
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DThreads.java196 // Get list of Java threads that are waiting to enter the specified monitor.
215 ObjectMonitor waiting = thread.getCurrentWaitingMonitor();
216 if (monitor.equals(waiting)) {
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmThreadInstanceEntryImpl.java64 public final static byte waiting = (byte)0x02; // bit 7 field in class:JvmThreadInstanceEntryImpl.ThreadStateMap.Byte0
108 setBit(bitmap,0,Byte0.waiting);
/openjdk7/jdk/src/share/back/
H A DeventHelper.c102 jboolean waiting; member in struct:HelperCommand
165 command->waiting = wait;
207 if (command->waiting) {
210 log_debugee_location("completeCommand(): HelperCommand done waiting", NULL, NULL, 0);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java1767 ObjectReference waiting = thread.currentContendedMonitor();
1768 if (waiting == null) {
1769 MessageOutput.println("Not waiting for a monitor");
1771 MessageOutput.println("Waiting for monitor:", waiting.toString());

Completed in 64 milliseconds