Searched refs:utime (Results 1 - 9 of 9) sorted by relevance

/system/core/toolbox/
H A Dtop.c46 long unsigned utime, ntime, stime, itime; member in struct:cpu_info
63 uint64_t utime; member in struct:proc_info
243 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &new_cpu.utime, &new_cpu.ntime, &new_cpu.stime,
348 "%" SCNu64 // utime %lu (14)
357 &proc->utime,
437 new_procs[i]->delta_utime = new_procs[i]->utime - old_proc->utime;
447 total_delta_time = (new_cpu.utime + new_cpu.ntime + new_cpu.stime + new_cpu.itime
449 - (old_cpu.utime + old_cpu.ntime + old_cpu.stime + old_cpu.itime
456 ((new_cpu.utime
[all...]
H A Dps.c56 unsigned utime, stime; local
110 utime = atoi(nexttok(&ptr));
113 nexttok(&ptr); // utime
200 printf(" (u:%d, s:%d)", utime, stime);
/system/extras/cpustats/
H A Dcpustats.c45 long unsigned utime, ntime, stime, itime, iowtime, irqtime, sirqtime; member in struct:cpu_info
242 &new_total_cpu.utime, &new_total_cpu.ntime, &new_total_cpu.stime, &new_total_cpu.itime,
252 fscanf(file, scanline, &new_cpus[i].utime, &new_cpus[i].ntime, &new_cpus[i].stime,
292 return (cpu->utime + cpu->ntime + cpu->stime + cpu->itime + cpu->iowtime + cpu->irqtime +
325 new_cpu->utime - old_cpu->utime,
338 new_cpu->utime - old_cpu->utime,
/system/update_engine/
H A Dmain.cc59 string GetTimeAsString(time_t utime) { argument
61 CHECK_EQ(localtime_r(&utime, &tm), &tm);
/system/core/bootstat/
H A Dboot_event_record_store.cpp22 #include <utime.h>
103 // set in the utime() call.
114 if (utime(record_path.c_str(), &times) == -1) {
/system/extras/ANRdaemon/
H A DANRdaemon.cpp74 unsigned long utime, ntime, stime, itime; member in struct:cpu_stat
138 if (fscanf(fp, params, &cpu->utime, &cpu->ntime,
149 cpu->total = cpu->utime + cpu->ntime + cpu->stime + cpu->itime
/system/core/adb/
H A Dfile_sync_service.cpp32 #include <utime.h>
215 utime(path, &u);
H A Dsysdeps.h81 #include <utime.h>
353 #define utime adb_utime macro
H A Dfile_sync_client.cpp29 #include <utime.h>
870 int r1 = utime(lpath.c_str(), &times);

Completed in 573 milliseconds