Lines Matching refs:TimeValue
46 static TimeValue getTimeValueFromFILETIME(FILETIME Time) {
52 return TimeValue(
53 static_cast<TimeValue::SecondsType>(TimeInteger.QuadPart / 10000000),
54 static_cast<TimeValue::NanoSecondsType>(
58 TimeValue self_process::get_user_time() const {
62 return TimeValue();
67 TimeValue self_process::get_system_time() const {
71 return TimeValue();
109 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
110 TimeValue &sys_time) {
111 elapsed = TimeValue::now();