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

/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXToolkit.c574 jlong curTime = awtJNI_TimeMillis(); local
579 taskTimeout = (nextTaskTime == -1) ? AWT_MAX_POLL_TIMEOUT : (uint32_t)max(0, (int32_t)(nextTaskTime - curTime));
580 flushTimeout = (awt_next_flush_time > 0) ? (uint32_t)max(0, (int32_t)(awt_next_flush_time - curTime)) : AWT_MAX_POLL_TIMEOUT;
582 PRINT2("to: %d, ft: %d, to: %d, tt: %d, mil: %d\n", taskTimeout, flushTimeout, timeout, (int)nextTaskTime, (int)curTime);
591 ret_timeout = (nextTaskTime > curTime) ?
592 (nextTaskTime - curTime) :
722 jlong curTime = awtJNI_TimeMillis(); // current time local
726 if (curTime >= next_flush_time) {
731 awt_last_flush_time = curTime;

Completed in 498 milliseconds