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

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp5303 // current_thread_cpu_time(bool) and thread_cpu_time(Thread*, bool)
5307 // current_thread_cpu_time() and thread_cpu_time(Thread*) returns
5312 return os::thread_cpu_time(Thread::current(), true /* user + sys */);
5323 jlong os::thread_cpu_time(Thread* thread) { function in class:os
5336 return os::thread_cpu_time(Thread::current(), user_sys_cpu_time);
5346 jlong os::thread_cpu_time(Thread *thread, bool user_sys_cpu_time) { function in class:os
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp5081 // current_thread_cpu_time(bool) and thread_cpu_time(Thread*, bool)
5085 // current_thread_cpu_time() and thread_cpu_time(Thread*) returns
5097 jlong os::thread_cpu_time(Thread* thread) { function in class:os
5114 jlong os::thread_cpu_time(Thread *thread, bool user_sys_cpu_time) { function in class:os
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp5995 // The thread_cpu_time() and current_thread_cpu_time() are only
5999 // current_thread_cpu_time(bool) and thread_cpu_time(Thread*, bool)
6003 // current_thread_cpu_time() and thread_cpu_time(Thread *)
6012 jlong os::thread_cpu_time(Thread *thread) { function in class:os
6016 return os::thread_cpu_time(thread, false /* user time only */);
6021 return os::thread_cpu_time(Thread::current(), user_sys_cpu_time);
6027 jlong os::thread_cpu_time(Thread *thread, bool user_sys_cpu_time) { function in class:os
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3992 // current_thread_cpu_time(bool) and thread_cpu_time(Thread*, bool)
3996 // current_thread_cpu_time() and thread_cpu_time(Thread*) returns
4002 return os::thread_cpu_time(Thread::current(), true /* user+sys */);
4005 jlong os::thread_cpu_time(Thread* thread) { function in class:os
4007 return os::thread_cpu_time(thread, true /* user+sys */);
4011 return os::thread_cpu_time(Thread::current(), user_sys_cpu_time);
4014 jlong os::thread_cpu_time(Thread* thread, bool user_sys_cpu_time) { function in class:os
4052 // see os::thread_cpu_time

Completed in 1245 milliseconds