Home
last modified time | relevance | path

Searched refs:timerThread (Results 1 – 2 of 2) sorted by relevance

/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DEventQueueImpl.java144 private boolean shouldWait(TimerThread timerThread) { in shouldWait() argument
146 ((timerThread == null) ? true : !timerThread.timedOut()); in shouldWait()
182 TimerThread timerThread = null; in removeUnfiltered() local
185 timerThread = startTimerThread(timeout); in removeUnfiltered()
188 while (shouldWait(timerThread)) { in removeUnfiltered()
192 if ((timerThread != null) && !timerThread.timedOut()) { in removeUnfiltered()
193 timerThread.interrupt(); in removeUnfiltered()
/external/deqp/framework/delibs/deutil/
DdeTimer.c311 static void timerThread (void* arg) in timerThread() function
370 thread->thread = deThread_create(timerThread, thread, DE_NULL); in deTimerThread_create()