Searched refs:utime (Results 1 – 5 of 5) sorted by relevance
/packages/services/Car/tools/bootio/ |
D | bootio_collector.cpp | 43 long unsigned utime, ntime, stime, itime; in PopulateCpu() local 48 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &utime, &ntime, &stime, in PopulateCpu() 51 cpu.set_utime(utime); in PopulateCpu() 128 uint64_t utime; in ReadStat() local 138 &utime, in ReadStat() 141 sample->set_utime(utime); in ReadStat() 206 return cpu.utime() + cpu.ntime() + cpu.stime() + cpu.itime() + cpu.iowtime() + in SumCpuValues() 271 cpuLoad = (newerSample->utime() - olderSample->utime() + in PrintPids()
|
D | protos.proto | 27 required int64 utime = 3; field 52 required int64 utime = 9; field
|
/packages/services/Car/vehicle_monitor_service/ |
D | ProcessMonitor.cpp | 54 return (a.second->utime + a.second->utime) > (b.second->stime + b.second->stime); in procCpuCmp() 124 it->second->utime, in dumpTopProcesses() 223 &pidData->utime, in readStat() 283 pidData->delta_utime = pidData->utime - oldPidData->utime; in updateDiffs()
|
D | ProcessMonitor.h | 42 uint64_t utime; member
|
/packages/experimental/procstatlog/ |
D | procstatreport.py | 182 utime = sum([int(next[x]) - int(last[x]) for x in [0, 1]]) 184 all = stime + utime + idle 186 total_user += utime 189 sys_user_jiffies[when] = (stime + utime, all) 323 utime = int(next[13]) - int(last[13]) 325 process_sys_user.setdefault(pid, {})[when] = (stime + utime, all)
|