Searched refs:timerThread (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventQueueImpl.java144 private boolean shouldWait(TimerThread timerThread) { argument
146 ((timerThread == null) ? true : !timerThread.timedOut());
182 TimerThread timerThread = null;
185 timerThread = startTimerThread(timeout);
188 while (shouldWait(timerThread)) {
192 if ((timerThread != null) && !timerThread.timedOut()) {
193 timerThread.interrupt();
/openjdk7/jdk/src/share/classes/sun/misc/
H A DTimer.java148 static TimerThread timerThread = null; field in class:Timer
167 if (timerThread == null) {
168 timerThread = new TimerThread();
193 synchronized (timerThread) {
214 synchronized (timerThread) {
237 synchronized (timerThread) {
287 synchronized (timerThread) {
319 return TimerThread.timerThread;
356 static TimerThread timerThread; field in class:TimerThread
367 timerThread
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DInterruptHangTest.java86 Thread timerThread; field in class:InterruptHangTest
108 timerThread.start();
128 timerThread = new Thread("test timer") {
156 timerThread.interrupt();
H A DTwoThreadsTest.java106 Thread timerThread; field in class:TwoThreadsTest
125 timerThread.start();
204 timerThread = new Thread("test timer") {
234 timerThread.interrupt();
H A DInvokeHangTest.java134 Thread timerThread; field in class:InvokeHangTest
165 timerThread.start();
237 timerThread = new Thread("test timer") {
267 timerThread.interrupt();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTimerQueue.java102 Thread timerThread = new Thread(threadGroup, TimerQueue.this,
104 timerThread.setDaemon(true);
105 timerThread.setPriority(Thread.NORM_PRIORITY);
106 timerThread.start();

Completed in 34 milliseconds