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