Searched defs:clock (Results 1 - 7 of 7) sorted by relevance
| /openjdk7/jdk/src/share/classes/java/lang/ref/ |
| H A D | SoftReference.java | 67 * Timestamp clock, updated by the garbage collector 69 static private long clock; field in class:SoftReference 86 this.timestamp = clock; 100 this.timestamp = clock; 113 if (o != null && this.timestamp != clock) 114 this.timestamp = clock;
|
| /openjdk7/jdk/src/solaris/native/java/util/ |
| H A D | TimeZone_md.c | 689 time_t clock; local 691 clock = time(NULL); 693 local_tm = localtime(&clock);
|
| /openjdk7/hotspot/src/share/vm/classfile/ |
| H A D | javaClasses.cpp | 2379 jlong java_lang_ref_SoftReference::clock() { function in class:java_lang_ref_SoftReference 3199 CHECK_STATIC_OFFSET("java/lang/ref/SoftReference", java_lang_ref_SoftReference, clock, "J");
|
| /openjdk7/hotspot/src/os/bsd/vm/ |
| H A D | os_bsd.cpp | 1595 // XXXDARWIN: Investigate replacement monotonic clock 1603 // yes, monotonic clock is supported 1622 // See if monotonic clock is supported by the kernel. Note that some 1624 // 1/100 or 1/1000 second). It would be bad to use such a low res clock 1634 // yes, monotonic clock is supported 1637 // close librt if there is no monotonic clock 1672 // clock (CLOCK_THREAD_CPUTIME_ID) but not the clocks 1715 // gettimeofday is a real time clock so it skips 1755 struct tm* os::localtime_pd(const time_t* clock, struct tm* res) { argument 1756 return localtime_r(clock, re [all...] |
| /openjdk7/hotspot/src/os/linux/vm/ |
| H A D | os_linux.cpp | 1416 // See if monotonic clock is supported by the kernel. Note that some 1418 // 1/100 or 1/1000 second). It would be bad to use such a low res clock 1428 // yes, monotonic clock is supported 1431 // close librt if there is no monotonic clock 1464 // clock (CLOCK_THREAD_CPUTIME_ID) but not the clocks 1506 // gettimeofday is a real time clock so it skips 1546 struct tm* os::localtime_pd(const time_t* clock, struct tm* res) { argument 1547 return localtime_r(clock, res); 3540 // time moving backwards, should only happen if no monotonic clock 3579 // time moving backwards, should only happen if no monotonic clock [all...] |
| /openjdk7/hotspot/src/os/solaris/vm/ |
| H A D | os_solaris.cpp | 382 struct tm* os::localtime_pd(const time_t* clock, struct tm* res) { argument 383 return localtime_r(clock, res);
|
| /openjdk7/hotspot/src/os/windows/vm/ |
| H A D | os_windows.cpp | 379 struct tm* os::localtime_pd(const time_t* clock, struct tm* res) { argument 380 const struct tm* time_struct_ptr = localtime(clock); 843 // this is a wall clock timer, so may skip 3327 // timeBeginPeriod() has been linked to problems with clock drift on win32 systems and
|
Completed in 358 milliseconds