Searched refs:pw (Results 1 - 25 of 86) sorted by relevance

1234

/frameworks/base/services/java/com/android/server/
H A DNetStatService.java67 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
70 pw.print("Elapsed: total=");
71 pw.print(SystemClock.elapsedRealtime());
72 pw.print("ms awake=");
73 pw.print(SystemClock.uptimeMillis());
74 pw.println("ms");
76 pw.print("Mobile: Tx=");
77 pw.print(getMobileTxBytes());
78 pw.print("B/");
79 pw
[all...]
H A DDiskStatsService.java44 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
69 pw.print("Test-Error: ");
70 pw.println(error.toString());
72 pw.print("Latency: ");
73 pw.print(after - before);
74 pw.println("ms [512B Data Write]");
77 reportFreeSpace(Environment.getDataDirectory(), "Data", pw);
78 reportFreeSpace(Environment.getDownloadCacheDirectory(), "Cache", pw);
79 reportFreeSpace(new File("/system"), "System", pw);
85 private void reportFreeSpace(File path, String name, PrintWriter pw) { argument
[all...]
H A DProcessStats.java671 PrintWriter pw = new PrintWriter(sw);
672 pw.print("Load: ");
673 pw.print(mLoad1);
674 pw.print(" / ");
675 pw.print(mLoad5);
676 pw.print(" / ");
677 pw.println(mLoad15);
685 PrintWriter pw = new PrintWriter(sw);
687 pw.print("CPU usage from ");
689 pw
740 printRatio(PrintWriter pw, long numerator, long denominator) argument
753 printProcessCPU(PrintWriter pw, String prefix, int pid, String label, int totalTime, int user, int system, int iowait, int irq, int softIrq, int minFaults, int majFaults) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DProcessRecord.java133 void dump(PrintWriter pw, String prefix) { argument
137 pw.print(prefix); pw.print("class="); pw.println(info.className);
140 pw.print(prefix); pw.print("manageSpaceActivityName=");
141 pw.println(info.manageSpaceActivityName);
143 pw.print(prefix); pw.print("dir="); pw
[all...]
H A DBroadcastRecord.java76 void dump(PrintWriter pw, String prefix) { argument
79 pw.print(prefix); pw.println(this);
80 pw.print(prefix); pw.println(intent);
84 pw.print(prefix); pw.print("extras: "); pw.println(bundle.toString());
87 pw.print(prefix); pw
[all...]
H A DIntentBindRecord.java50 void dump(PrintWriter pw, String prefix) { argument
51 pw.print(prefix); pw.print("service="); pw.println(service);
52 dumpInService(pw, prefix);
55 void dumpInService(PrintWriter pw, String prefix) { argument
56 pw.print(prefix); pw.print("intent={");
57 pw.print(intent.getIntent().toShortString(true, false));
58 pw
[all...]
H A DReceiverList.java69 void dumpLocal(PrintWriter pw, String prefix) { argument
70 pw.print(prefix); pw.print("app="); pw.print(app);
71 pw.print(" pid="); pw.print(pid); pw.print(" uid="); pw.println(uid);
73 pw.print(prefix); pw
78 dump(PrintWriter pw, String prefix) argument
[all...]
H A DContentProviderRecord.java60 void dump(PrintWriter pw, String prefix) { argument
61 pw.print(prefix); pw.print("package=");
62 pw.print(info.applicationInfo.packageName);
63 pw.print("process="); pw.println(info.processName);
64 pw.print(prefix); pw.print("app="); pw.println(app);
66 pw
[all...]
H A DBroadcastFilter.java37 public void dump(PrintWriter pw, String prefix) { argument
38 dumpInReceiverList(pw, new PrintWriterPrinter(pw), prefix);
39 receiverList.dumpLocal(pw, prefix);
42 public void dumpBrief(PrintWriter pw, String prefix) { argument
43 dumpBroadcastFilterState(pw, prefix);
46 public void dumpInReceiverList(PrintWriter pw, Printer pr, String prefix) { argument
48 dumpBroadcastFilterState(pw, prefix);
51 void dumpBroadcastFilterState(PrintWriter pw, String prefix) { argument
53 pw
[all...]
H A DActivityRecord.java110 void dump(PrintWriter pw, String prefix) { argument
111 pw.print(prefix); pw.print("packageName="); pw.print(packageName);
112 pw.print(" processName="); pw.println(processName);
113 pw.print(prefix); pw.print("launchedFromUid="); pw.print(launchedFromUid);
114 pw
[all...]
H A DServiceRecord.java152 void dumpStartList(PrintWriter pw, String prefix, List<StartItem> list, long now) { argument
156 pw.print(prefix); pw.print("#"); pw.print(i);
157 pw.print(" id="); pw.print(si.id);
159 pw.print(" dur=");
160 TimeUtils.formatDuration(si.deliveredTime, now, pw);
163 pw.print(" dc="); pw
189 dump(PrintWriter pw, String prefix) argument
[all...]
H A DUriPermission.java84 void dump(PrintWriter pw, String prefix) { argument
85 pw.print(prefix); pw.print("modeFlags=0x");
86 pw.print(Integer.toHexString(modeFlags));
87 pw.print(" uid="); pw.print(uid);
88 pw.print(" globalModeFlags=0x");
89 pw.println(Integer.toHexString(globalModeFlags));
91 pw.print(prefix); pw
[all...]
H A DTaskRecord.java88 void dump(PrintWriter pw, String prefix) { argument
90 pw.print(prefix); pw.print("clearOnBackground="); pw.print(clearOnBackground);
91 pw.print(" numActivities="); pw.print(numActivities);
92 pw.print(" rootWasReset="); pw.println(rootWasReset);
95 pw.print(prefix); pw
[all...]
H A DAppBindRecord.java34 void dump(PrintWriter pw, String prefix) { argument
35 pw.println(prefix + "service=" + service);
36 pw.println(prefix + "client=" + client);
37 dumpInIntentBind(pw, prefix);
40 void dumpInIntentBind(PrintWriter pw, String prefix) { argument
42 pw.println(prefix + "Per-process Connections:");
46 pw.println(prefix + " " + c);
H A DPendingIntentRecord.java286 void dump(PrintWriter pw, String prefix) { argument
287 pw.print(prefix); pw.print("uid="); pw.print(uid);
288 pw.print(" packageName="); pw.print(key.packageName);
289 pw.print(" type="); pw.print(key.typeName());
290 pw.print(" flags=0x"); pw
[all...]
H A DConnectionRecord.java36 void dump(PrintWriter pw, String prefix) { argument
37 pw.println(prefix + "binding=" + binding);
39 pw.println(prefix + "activity=" + activity);
41 pw.println(prefix + "conn=" + conn.asBinder()
/frameworks/base/core/java/android/util/
H A DPrintStreamPrinter.java31 * @param pw The PrintWriter where you would like output to go.
33 public PrintStreamPrinter(PrintStream pw) { argument
34 mPS = pw;
H A DPrintWriterPrinter.java31 * @param pw The PrintWriter where you would like output to go.
33 public PrintWriterPrinter(PrintWriter pw) { argument
34 mPW = pw;
/frameworks/base/core/java/android/os/
H A DBatteryStats.java165 public abstract void logState(Printer pw, String prefix); argument
194 public abstract void logState(Printer pw, String prefix); argument
997 * @param pw the PageWriter to dump log to
1002 private static final void dumpLine(PrintWriter pw, int uid, String category, String type, argument
1004 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
1005 pw.print(uid); pw.print(',');
1006 pw.print(category); pw
1021 dumpCheckinLocked(PrintWriter pw, int which, int reqUid) argument
1270 dumpLocked(PrintWriter pw, String prefix, int which, int reqUid) argument
1740 printBitDescriptions(PrintWriter pw, int oldval, int newval, BitDescription[] descriptions) argument
1770 dumpLocked(PrintWriter pw) argument
1928 dumpCheckinLocked(PrintWriter pw, String[] args, List<ApplicationInfo> apps) argument
[all...]
/frameworks/base/core/java/android/view/animation/
H A DTransformation.java167 public void printShortString(PrintWriter pw) { argument
168 pw.print("{alpha="); pw.print(mAlpha);
169 pw.print(" matrix=");
170 mMatrix.printShortString(pw);
171 pw.print('}');
/frameworks/base/core/java/android/app/
H A DApplicationErrorReport.java377 public void dump(Printer pw, String prefix) { argument
378 pw.println(prefix + "exceptionClassName: " + exceptionClassName);
379 pw.println(prefix + "exceptionMessage: " + exceptionMessage);
380 pw.println(prefix + "throwFileName: " + throwFileName);
381 pw.println(prefix + "throwClassName: " + throwClassName);
382 pw.println(prefix + "throwMethodName: " + throwMethodName);
383 pw.println(prefix + "throwLineNumber: " + throwLineNumber);
384 pw.println(prefix + "stackTrace: " + stackTrace);
434 public void dump(Printer pw, String prefix) { argument
435 pw
495 dump(Printer pw, String prefix) argument
542 dump(Printer pw, String prefix) argument
566 dump(Printer pw, String prefix) argument
[all...]
/frameworks/base/core/java/android/content/
H A DSyncManager.java962 protected void dump(FileDescriptor fd, PrintWriter pw) { argument
964 dumpSyncState(pw, sb);
965 dumpSyncHistory(pw, sb);
967 pw.println();
968 pw.println("SyncAdapters:");
970 pw.println(" " + info);
980 protected void dumpSyncState(PrintWriter pw, StringBuilder sb) { argument
981 pw.print("data connected: "); pw.println(mDataConnectionIsConnected);
982 pw
1143 dumpTimeSec(PrintWriter pw, long time) argument
1148 dumpDayStatistic(PrintWriter pw, SyncStorageEngine.DayStats ds) argument
1162 dumpSyncHistory(PrintWriter pw, StringBuilder sb) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DComponentInfo.java113 protected void dumpFront(Printer pw, String prefix) { argument
114 super.dumpFront(pw, prefix);
115 pw.println(prefix + "enabled=" + enabled + " exported=" + exported
118 pw.println(prefix + "description=" + descriptionRes);
122 protected void dumpBack(Printer pw, String prefix) { argument
124 pw.println(prefix + "ApplicationInfo:");
125 applicationInfo.dump(pw, prefix + " ");
127 pw.println(prefix + "ApplicationInfo: null");
129 super.dumpBack(pw, prefix);
H A DServiceInfo.java44 public void dump(Printer pw, String prefix) { argument
45 super.dumpFront(pw, prefix);
46 pw.println(prefix + "permission=" + permission);
H A DApplicationInfo.java387 public void dump(Printer pw, String prefix) { argument
388 super.dumpFront(pw, prefix);
390 pw.println(prefix + "className=" + className);
393 pw.println(prefix + "permission=" + permission);
395 pw.println(prefix + "processName=" + processName);
396 pw.println(prefix + "taskAffinity=" + taskAffinity);
397 pw.println(prefix + "uid=" + uid + " flags=0x" + Integer.toHexString(flags)
399 pw.println(prefix + "sourceDir=" + sourceDir);
402 pw.println(prefix + "publicSourceDir=" + publicSourceDir);
405 pw
[all...]

Completed in 202 milliseconds

1234