Lines Matching refs:TimeValue
56 static TimeValue getTimeValueFromFILETIME(FILETIME Time) {
62 return TimeValue(
63 static_cast<TimeValue::SecondsType>(TimeInteger.QuadPart / 10000000),
64 static_cast<TimeValue::NanoSecondsType>(
68 TimeValue self_process::get_user_time() const {
72 return TimeValue();
77 TimeValue self_process::get_system_time() const {
81 return TimeValue();
119 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
120 TimeValue &sys_time) {
121 elapsed = TimeValue::now();