Searched refs:stime (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/com/android/internal/os/ |
D | ProcessCpuTracker.java | 480 final long stime = procStats[PROCESS_STAT_STIME] * mJiffyMillis; in collectStats() 482 if (utime == st.base_utime && stime == st.base_stime) { in collectStats() 507 + " stime=" + stime + "-" + st.base_stime in collectStats() 514 st.rel_stime = (int)(stime - st.base_stime); in collectStats() 516 st.base_stime = stime; in collectStats()
|
/frameworks/native/cmds/dumpstate/ |
D | dumpstate.cpp | 4211 unsigned long long utime = 0, stime = 0, iotime = 0; in show_showtime() local 4217 &utime, &stime, &iotime) != 3) { in show_showtime() 4221 unsigned long long total = utime + stime; in show_showtime() 4236 snprcent(buffer, sizeof(buffer), 65, stime); in show_showtime()
|
/frameworks/base/core/java/android/os/ |
D | BatteryStats.java | 7304 private void printStepCpuUidDetails(StringBuilder sb, int uid, int utime, int stime) { in printStepCpuUidDetails() argument 7309 sb.append(stime); in printStepCpuUidDetails() 7314 int stime) { in printStepCpuUidCheckinDetails() argument 7320 sb.append(stime); in printStepCpuUidCheckinDetails()
|