Searched refs:stime (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/com/android/internal/os/ |
D | ProcessCpuTracker.java | 469 final long stime = procStats[PROCESS_STAT_STIME] * mJiffyMillis; in collectStats() 471 if (utime == st.base_utime && stime == st.base_stime) { in collectStats() 496 + " stime=" + stime + "-" + st.base_stime in collectStats() 503 st.rel_stime = (int)(stime - st.base_stime); in collectStats() 505 st.base_stime = stime; in collectStats()
|
/frameworks/native/cmds/dumpstate/ |
D | dumpstate.cpp | 3684 unsigned long long utime = 0, stime = 0, iotime = 0; in show_showtime() local 3690 &utime, &stime, &iotime) != 3) { in show_showtime() 3694 unsigned long long total = utime + stime; in show_showtime() 3709 snprcent(buffer, sizeof(buffer), 65, stime); in show_showtime()
|
/frameworks/base/core/java/android/os/ |
D | BatteryStats.java | 6670 private void printStepCpuUidDetails(StringBuilder sb, int uid, int utime, int stime) { in printStepCpuUidDetails() argument 6675 sb.append(stime); in printStepCpuUidDetails() 6680 int stime) { in printStepCpuUidCheckinDetails() argument 6686 sb.append(stime); in printStepCpuUidCheckinDetails()
|