Home
last modified time | relevance | path

Searched refs:totals (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationMemoryDumper.kt95 val totals = in <lambda>() constant
110 toKb(totals.smallIcon), in <lambda>()
111 toKb(totals.largeIcon), in <lambda>()
113 toKb(totals.styleIcon), in <lambda>()
114 toKb(totals.bigPicture), in <lambda>()
115 toKb(totals.extender), in <lambda>()
116 toKb(totals.extras), in <lambda>()
170 val totals = Totals() in <lambda>() constant
176 totals.smallIcon += view.smallIcon in <lambda>()
177 totals.largeIcon += view.largeIcon in <lambda>()
[all …]
DNotificationMemoryViewWalker.kt85 val totals = getTotalUsage(row) in <lambda>() constant
86 if (totals == null) { in <lambda>()
89 perViewUsages + totals in <lambda>()
/frameworks/base/core/java/android/view/
DWindowManagerGlobal.java613 ViewRootImpl.GfxInfo totals = new ViewRootImpl.GfxInfo(); in dumpGfxInfo() local
618 totals.add(info); in dumpGfxInfo()
627 pw.printf("Total %-15s: %d\n", "attached Views", totals.viewCount); in dumpGfxInfo()
629 totals.renderNodeMemoryUsage / 1024.0f, in dumpGfxInfo()
630 totals.renderNodeMemoryAllocated / 1024.0f); in dumpGfxInfo()
/frameworks/base/core/java/com/android/internal/app/procstats/
DProcessState.java1126 ProcessStats.ProcessDataCollection totals = new ProcessStats.ProcessDataCollection( in dumpProcessSummaryDetails() local
1128 computeProcessData(totals, now); in dumpProcessSummaryDetails()
1129 final double percentage = (double) totals.totalTime / (double) totalTime * 100; in dumpProcessSummaryDetails()
1131 if (percentage >= 0.005 || totals.numPss != 0) { in dumpProcessSummaryDetails()
1140 totals.print(pw, totalTime, full); in dumpProcessSummaryDetails()