Searched refs:newtime (Results 1 - 3 of 3) sorted by relevance

/openjdk10/jdk/test/sun/security/ssl/SSLSessionContextImpl/
H A DTimeout.java53 int newtime = sslsc.getSessionTimeout();
54 if (newtime != Integer.MAX_VALUE) {
57 newtime);
/openjdk10/jdk/src/jdk.accessibility/windows/native/toolscommon/
H A DAccessInfo.cpp38 struct tm *newtime; local
43 newtime = localtime( &long_time ); /* Convert to local time. */
45 if( newtime->tm_hour > 12 ) /* Set up extension. */
47 if( newtime->tm_hour > 12 ) /* Convert from 24-hour */
48 newtime->tm_hour -= 12; /* to 12-hour clock. */
49 if( newtime->tm_hour == 0 ) /*Set hour to 12 if midnight. */
50 newtime->tm_hour = 12;
52 sprintf(datebuf, "%.19s %s\n", asctime( newtime ), am_pm );
/openjdk10/hotspot/src/os/posix/vm/
H A Dos_posix.cpp419 jlong newtime = javaTimeNanos(); local
421 if (newtime - prevtime < 0) {
426 millis -= (newtime - prevtime) / NANOSECS_PER_MILLISEC;
433 prevtime = newtime;
458 jlong newtime = javaTimeNanos(); local
460 if (newtime - prevtime < 0) {
465 millis -= (newtime - prevtime) / NANOSECS_PER_MILLISEC;
470 prevtime = newtime;

Completed in 49 milliseconds