Searched refs:ntime (Results 1 – 3 of 3) sorted by relevance
/system/extras/cpustats/ |
D | cpustats.c | 45 long unsigned utime, ntime, stime, itime, iowtime, irqtime, sirqtime; member 242 &new_total_cpu.utime, &new_total_cpu.ntime, &new_total_cpu.stime, &new_total_cpu.itime, in read_stats() 252 fscanf(file, scanline, &new_cpus[i].utime, &new_cpus[i].ntime, &new_cpus[i].stime, in read_stats() 292 return (cpu->utime + cpu->ntime + cpu->stime + cpu->itime + cpu->iowtime + cpu->irqtime + in get_cpu_total_time() 326 new_cpu->ntime - old_cpu->ntime, in print_cpu_stats() 339 new_cpu->ntime - old_cpu->ntime, in print_cpu_stats()
|
/system/core/toolbox/ |
D | top.c | 46 long unsigned utime, ntime, stime, itime; member 243 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &new_cpu.utime, &new_cpu.ntime, &new_cpu.stime, in read_procs() 447 total_delta_time = (new_cpu.utime + new_cpu.ntime + new_cpu.stime + new_cpu.itime in print_procs() 449 - (old_cpu.utime + old_cpu.ntime + old_cpu.stime + old_cpu.itime in print_procs() 456 … ((new_cpu.utime + new_cpu.ntime) - (old_cpu.utime + old_cpu.ntime)) * 100 / total_delta_time, in print_procs() 463 new_cpu.ntime - old_cpu.ntime, in print_procs()
|
/system/extras/ANRdaemon/ |
D | ANRdaemon.cpp | 72 unsigned long utime, ntime, stime, itime; member 136 if (fscanf(fp, params, &cpu->utime, &cpu->ntime, in get_cpu_stat() 147 cpu->total = cpu->utime + cpu->ntime + cpu->stime + cpu->itime in get_cpu_stat()
|