Searched refs:awt_next_flush_time (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXToolkit.c393 static jlong awt_next_flush_time = 0LL; /* 0 == no scheduled flush */ variable
580 flushTimeout = (awt_next_flush_time > 0) ? (uint32_t)max(0, (int32_t)(awt_next_flush_time - curTime)) : AWT_MAX_POLL_TIMEOUT;
607 * awt_next_flush_time has been reached.
615 if ((awt_next_flush_time > 0) && (awtJNI_TimeMillis() >= awt_next_flush_time)) {
617 awt_last_flush_time = awt_next_flush_time;
618 awt_next_flush_time = 0LL;
719 if (awt_next_flush_time == 0) {
734 awt_next_flush_time
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MToolkit.c199 awt_next_flush_time = 0LL; \
209 static jlong awt_next_flush_time = 0LL; /* 0 == no scheduled flush */ variable
298 DTRACE_PRINTLN2("awt_get_poll_timeout(%s), awt_next_flush_time:%ld",
300 awt_next_flush_time);
307 if (awt_next_flush_time > 0) {
308 int32_t flushDiff = (int32_t)(awt_next_flush_time - awtJNI_TimeMillis());
493 if (awt_next_flush_time == 0)
500 /* awt_next_flush_time affects awt_get_poll_timeout(), so set
503 awt_next_flush_time = awtJNI_TimeMillis() + AWT_FLUSH_TIMEOUT;
1938 * awt_next_flush_time ha
[all...]

Completed in 41 milliseconds