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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.cpp186 double real_time, user_time, system_time; local
187 valid = os::getTimesSecs(&real_time, &user_time, &system_time);
190 user_secs = user_time - _starting_user_time;
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp5360 nanos = ((jlong) tinfo.system_time.seconds + tinfo.user_time.seconds) * (jlong)1000000000;
5361 nanos += ((jlong) tinfo.system_time.microseconds + (jlong) tinfo.user_time.microseconds) * (jlong)1000;
5364 return ((jlong)tinfo.user_time.seconds * 1000000000) + ((jlong)tinfo.user_time.microseconds * (jlong)1000);
5391 long sys_time, user_time; local
5405 count = fscanf( fp, "%s %lu %lu\n", string, &user_time, &sys_time);
5410 return ((jlong)sys_time + (jlong)user_time) * (1000000000 / clock_tics_per_sec);
5412 return (jlong)user_time * (1000000000 / clock_tics_per_sec);
5457 &user_time, &sys_time);
5460 return ((jlong)sys_time + (jlong)user_time) * (100000000
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp5137 long sys_time, user_time; local
5151 count = fscanf( fp, "%s %lu %lu\n", string, &user_time, &sys_time);
5156 return ((jlong)sys_time + (jlong)user_time) * (1000000000 / clock_tics_per_sec);
5158 return (jlong)user_time * (1000000000 / clock_tics_per_sec);
5203 &user_time, &sys_time);
5206 return ((jlong)sys_time + (jlong)user_time) * (1000000000 / clock_tics_per_sec);
5208 return (jlong)user_time * (1000000000 / clock_tics_per_sec);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp882 FILETIME create_time, exit_time, kernel_time, user_time; local
887 &user_time);
892 jlong user_millis = windows_to_java_time(user_time);

Completed in 84 milliseconds