Home | History | Annotate | Download | only in app

Lines Matching refs:printRow

1022             printRow(pw, HEAP_COLUMN, "", "", "Shared", "Private", "Heap", "Heap", "Heap");
1023 printRow(pw, HEAP_COLUMN, "", "Pss", "Dirty", "Dirty", "Size", "Alloc", "Free");
1024 printRow(pw, HEAP_COLUMN, "", "------", "------", "------", "------", "------",
1026 printRow(pw, HEAP_COLUMN, "Native", memInfo.nativePss, memInfo.nativeSharedDirty,
1028 printRow(pw, HEAP_COLUMN, "Dalvik", memInfo.dalvikPss, memInfo.dalvikSharedDirty,
1036 printRow(pw, HEAP_COLUMN, Debug.MemoryInfo.getOtherLabel(i),
1044 printRow(pw, HEAP_COLUMN, "Unknown", otherPss, otherSharedDirty,
1046 printRow(pw, HEAP_COLUMN, "TOTAL", memInfo.getTotalPss(),
1053 printRow(pw, TWO_COUNT_COLUMNS, "Views:", viewInstanceCount, "ViewRootImpl:",
1056 printRow(pw, TWO_COUNT_COLUMNS, "AppContexts:", appContextInstanceCount,
1059 printRow(pw, TWO_COUNT_COLUMNS, "Assets:", globalAssetCount,
1062 printRow(pw, TWO_COUNT_COLUMNS, "Local Binders:", binderLocalObjectCount,
1064 printRow(pw, ONE_COUNT_COLUMN, "Death Recipients:", binderDeathObjectCount);
1066 printRow(pw, ONE_COUNT_COLUMN, "OpenSSL Sockets:", openSslSocketCount);
1071 printRow(pw, ONE_COUNT_COLUMN, "MEMORY_USED:", stats.memoryUsed / 1024);
1072 printRow(pw, TWO_COUNT_COLUMNS, "PAGECACHE_OVERFLOW:",
1078 printRow(pw, " %8s %8s %14s %14s %s", "pgsz", "dbsz", "Lookaside(b)", "cache",
1082 printRow(pw, DB_INFO_FORMAT,
1130 private void printRow(PrintWriter pw, String format, Object...objs) {