Home
last modified time | relevance | path

Searched refs:printRow (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
DLoadTestsAutoTest.java156 private void printRow(PrintStream ps, String format, Object...objs) { in printRow() method in LoadTestsAutoTest
193 printRow(ps, formatString, "", "native", "dalvik", "other", "total"); in dumpMemoryInfo()
194 printRow(ps, formatString, "size:", nativeMax, dalvikMax, "N/A", nativeMax + dalvikMax); in dumpMemoryInfo()
195 printRow(ps, formatString, "allocated:", nativeAllocated, dalvikAllocated, "N/A", in dumpMemoryInfo()
197 printRow(ps, formatString, "free:", nativeFree, dalvikFree, "N/A", in dumpMemoryInfo()
200 printRow(ps, formatString, "(Pss):", memInfo.nativePss, memInfo.dalvikPss, in dumpMemoryInfo()
203 printRow(ps, formatString, "(shared dirty):", nativeShared, dalvikShared, otherShared, in dumpMemoryInfo()
205 printRow(ps, formatString, "(priv dirty):", nativePrivate, dalvikPrivate, otherPrivate, in dumpMemoryInfo()
/frameworks/base/tools/preload/
DPrintCsv.java51 printRow(System.out, baseline, loadedClass); in main()
70 static void printRow(PrintStream out, MemoryUsage baseline, in printRow() method in PrintCsv
/frameworks/base/core/java/android/app/
DActivityThread.java1012 printRow(pw, HEAP_COLUMN, "", "", "Shared", "Private", "Heap", "Heap", "Heap"); in dumpMemInfo()
1013 printRow(pw, HEAP_COLUMN, "", "Pss", "Dirty", "Dirty", "Size", "Alloc", "Free"); in dumpMemInfo()
1014 printRow(pw, HEAP_COLUMN, "", "------", "------", "------", "------", "------", in dumpMemInfo()
1016 printRow(pw, HEAP_COLUMN, "Native", memInfo.nativePss, memInfo.nativeSharedDirty, in dumpMemInfo()
1018 printRow(pw, HEAP_COLUMN, "Dalvik", memInfo.dalvikPss, memInfo.dalvikSharedDirty, in dumpMemInfo()
1026 printRow(pw, HEAP_COLUMN, Debug.MemoryInfo.getOtherLabel(i), in dumpMemInfo()
1034 printRow(pw, HEAP_COLUMN, "Unknown", otherPss, otherSharedDirty, in dumpMemInfo()
1036 printRow(pw, HEAP_COLUMN, "TOTAL", memInfo.getTotalPss(), in dumpMemInfo()
1043 printRow(pw, TWO_COUNT_COLUMNS, "Views:", viewInstanceCount, "ViewRootImpl:", in dumpMemInfo()
1046 printRow(pw, TWO_COUNT_COLUMNS, "AppContexts:", appContextInstanceCount, in dumpMemInfo()
[all …]