Searched refs:stime (Results 1 – 6 of 6) sorted by relevance
/system/extras/boottime_tools/bootio/ |
D | bootio_collector.cpp | 41 long unsigned utime, ntime, stime, itime; in PopulateCpu() local 46 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &utime, &ntime, &stime, in PopulateCpu() 51 cpu.set_stime(stime); in PopulateCpu() 127 uint64_t stime; in ReadStat() local 137 &stime, in ReadStat() 140 sample->set_stime(stime); in ReadStat() 204 return cpu.utime() + cpu.ntime() + cpu.stime() + cpu.itime() + cpu.iowtime() + in SumCpuValues() 270 newerSample->stime() - olderSample->stime()) * 100. / cpuDelta; in PrintPids()
|
D | protos.proto | 29 required int64 stime = 5; field 53 required int64 stime = 10; field
|
/system/extras/cpustats/ |
D | cpustats.c | 45 long unsigned utime, ntime, stime, itime, iowtime, irqtime, sirqtime; member 245 &new_total_cpu.utime, &new_total_cpu.ntime, &new_total_cpu.stime, &new_total_cpu.itime, in read_stats() 255 fscanf(file, scanline, &new_cpus[i].utime, &new_cpus[i].ntime, &new_cpus[i].stime, in read_stats() 295 return (cpu->utime + cpu->ntime + cpu->stime + cpu->itime + cpu->iowtime + cpu->irqtime + in get_cpu_total_time() 330 new_cpu->stime - old_cpu->stime, in print_cpu_stats() 343 new_cpu->stime - old_cpu->stime, in print_cpu_stats()
|
/system/extras/tests/workloads/ |
D | systemapps.sh | 220 stime=$(getStartTime $actName $tmpTraceOut) 223 ((tdiff=$etime-$stime)) 224 if [ $etime -eq 0 -o $stime -eq 0 ]; then 225 handleError $app : could not compute start time stime=$stime etime=$etime
|
/system/extras/ANRdaemon/ |
D | ANRdaemon.cpp | 73 unsigned long utime, ntime, stime, itime; member 139 &cpu->stime, &cpu->itime, &cpu->iowtime, &cpu->irqtime, in get_cpu_stat() 150 cpu->total = cpu->utime + cpu->ntime + cpu->stime + cpu->itime in get_cpu_stat()
|
/system/core/llkd/ |
D | libllkd.cpp | 1024 unsigned stime = -1; in llkCheck() local 1032 &tid, pdir, &state, &ppid, &utime, &stime, &dummy); in llkCheck() 1037 << ppid << " ... " << utime << ' ' << stime << ' ' << dummy; in llkCheck() 1044 procp = llkTidAlloc(tid, pid, ppid, pdir, utime + stime, state); in llkCheck() 1053 } else if (procp->time != (utime + stime)) { // secondary ABA. in llkCheck() 1060 procp->time = utime + stime; in llkCheck()
|