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

/frameworks/base/include/private/surfaceflinger/
H A DSharedBufferStack.h89 usecs_t totalTime; member in struct:android::SharedBufferStack::Statistics
/frameworks/base/services/java/com/android/server/
H A DProcessStats.java607 final int totalTime = mRelUserTime + mRelSystemTime + mRelIoWaitTime
614 st.name, totalTime, st.rel_utime, st.rel_stime, 0, 0, 0,
622 tst.name, totalTime, tst.rel_utime, tst.rel_stime,
628 printProcessCPU(pw, "", "TOTAL", totalTime, mRelUserTime, mRelSystemTime,
634 private void printProcessCPU(PrintWriter pw, String prefix, String label, int totalTime, argument
639 if (totalTime == 0) totalTime = 1;
640 pw.print(((user+system+iowait+irq+softIrq)*100)/totalTime);
642 pw.print((user*100)/totalTime);
644 pw.print((system*100)/totalTime);
[all...]
/frameworks/base/core/java/android/app/
H A DIActivityManager.java370 public long totalTime; field in class:IActivityManager.WaitResult
384 dest.writeLong(totalTime);
403 totalTime = source.readLong();
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java205 Process.PROC_TAB_TERM|Process.PROC_OUT_LONG, // 5: totalTime
616 public void updateCurrentReportedTotalTime(long totalTime) { argument
619 mUnpluggedReportedTotalTime = totalTime;
623 mCurrentReportedTotalTime = totalTime;
877 long totalTime;
913 totalTime = (wlData[2] + 500) / 1000;
917 m.put(name, new KernelWakelockStats(count, totalTime,
924 kwlStats.mTotalTime += totalTime;
927 kwlStats.mTotalTime = totalTime;
954 KernelWakelockStats(int count, long totalTime, in argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java3645 long thisTime, long totalTime) {
3653 w.totalTime = totalTime;
3665 w.totalTime = SystemClock.uptimeMillis() - w.thisTime;
3666 w.thisTime = w.totalTime;
3766 outResult.totalTime = 0;
3644 reportActivityLaunchedLocked(boolean timeout, HistoryRecord r, long thisTime, long totalTime) argument

Completed in 222 milliseconds