1 write to utime
System.Diagnostics.Process (1)
src\libraries\Common\src\Interop\Linux\procfs\Interop.ProcFsStat.cs (1)
139results.utime = parser.ParseNextUInt64();
4 references to utime
System.Diagnostics.Process (4)
System\Diagnostics\Process.Linux.cs (2)
138return TicksToTimeSpan(stat.utime + stat.stime); 151get => IsCurrentProcess ? Environment.CpuUsage.UserTime : TicksToTimeSpan(GetStat().utime);
System\Diagnostics\ProcessThread.Linux.cs (2)
63return Process.TicksToTimeSpan(stat.utime + stat.stime); 79return Process.TicksToTimeSpan(stat.utime);