Searched defs:utime (Results 1 - 5 of 5) sorted by relevance

/system/update_engine/
H A Dmain.cc45 string GetTimeAsString(time_t utime) { argument
47 CHECK_EQ(localtime_r(&utime, &tm), &tm);
/system/extras/cpustats/
H A Dcpustats.c45 long unsigned utime, ntime, stime, itime, iowtime, irqtime, sirqtime; member in struct:cpu_info
245 &new_total_cpu.utime, &new_total_cpu.ntime, &new_total_cpu.stime, &new_total_cpu.itime,
255 fscanf(file, scanline, &new_cpus[i].utime, &new_cpus[i].ntime, &new_cpus[i].stime,
295 return (cpu->utime + cpu->ntime + cpu->stime + cpu->itime + cpu->iowtime + cpu->irqtime +
328 new_cpu->utime - old_cpu->utime,
341 new_cpu->utime - old_cpu->utime,
/system/core/adb/
H A Dsysdeps.h69 #include <utime.h>
255 #define utime adb_utime macro
/system/extras/boottime_tools/bootio/
H A Dbootio_collector.cpp41 long unsigned utime, ntime, stime, itime; local
46 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &utime, &ntime, &stime,
49 cpu.set_utime(utime);
126 uint64_t utime;
136 &utime,
139 sample->set_utime(utime);
204 return cpu.utime() + cpu.ntime() + cpu.stime() + cpu.itime() + cpu.iowtime() +
269 cpuLoad = (newerSample->utime() - olderSample->utime() +
/system/extras/ANRdaemon/
H A DANRdaemon.cpp73 unsigned long utime, ntime, stime, itime; member in struct:cpu_stat
138 if (fscanf(fp, params, &cpu->utime, &cpu->ntime,
150 cpu->total = cpu->utime + cpu->ntime + cpu->stime + cpu->itime

Completed in 88 milliseconds