Searched refs:totals (Results 1 – 4 of 4) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
H A D | NotificationMemoryDumper.kt | 93 val totals = regex 108 toKb(totals.smallIcon), 109 toKb(totals.largeIcon), 111 toKb(totals.styleIcon), 113 toKb(totals.extender), 114 toKb(totals.extras), 168 val totals = Totals() regex 176 totals.style += view.style 186 toKb(totals.smallIcon), 187 toKb(totals.largeIcon), [all …]
|
H A D | NotificationMemoryViewWalker.kt | 85 val totals = getTotalUsage(row) regex 86 if (totals == null) { 89 perViewUsages + totals
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | WindowManagerGlobal.java | 582 ViewRootImpl.GfxInfo totals = new ViewRootImpl.GfxInfo(); in dumpGfxInfo() local 587 totals.add(info); in dumpGfxInfo() 596 pw.printf("Total %-15s: %d\n", "attached Views", totals.viewCount); in dumpGfxInfo() 598 totals.renderNodeMemoryUsage / 1024.0f, in dumpGfxInfo() 599 totals.renderNodeMemoryAllocated / 1024.0f); in dumpGfxInfo()
|
/aosp14/frameworks/base/core/java/com/android/internal/app/procstats/ |
H A D | ProcessState.java | 1138 ProcessStats.ProcessDataCollection totals = new ProcessStats.ProcessDataCollection( in dumpProcessSummaryDetails() local 1140 computeProcessData(totals, now); in dumpProcessSummaryDetails() 1141 final double percentage = (double) totals.totalTime / (double) totalTime * 100; in dumpProcessSummaryDetails() 1143 if (percentage >= 0.005 || totals.numPss != 0) { in dumpProcessSummaryDetails() 1152 totals.print(pw, totalTime, full); in dumpProcessSummaryDetails()
|