8 references to TicksToTimeSpan
System.Diagnostics.Process (8)
System\Diagnostics\Process.Linux.cs (4)
57return TicksToTimeSpan(GetStat().stime); 66return BootTimeToDateTime(TicksToTimeSpan(GetStat().starttime)); 135return TicksToTimeSpan(stat.utime + stat.stime); 150return TicksToTimeSpan(GetStat().utime);
System\Diagnostics\ProcessThread.Linux.cs (4)
44return Process.TicksToTimeSpan(stat.stime); 48private DateTime GetStartTime() => Process.BootTimeToDateTime(Process.TicksToTimeSpan(GetStat().starttime)); 63return Process.TicksToTimeSpan(stat.utime + stat.stime); 79return Process.TicksToTimeSpan(stat.utime);