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

1234567891011>>

/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DIndentingPrintWriterTest.java41 final IndentingPrintWriter pw = new IndentingPrintWriter(mWriter, " ");
43 pw.print("Hello");
44 pw.increaseIndent();
45 pw.println();
46 pw.print("World");
47 pw.increaseIndent();
48 pw.println();
49 pw.print("And");
50 pw.decreaseIndent();
51 pw
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowToken.java80 void dump(PrintWriter pw, String prefix) { argument
81 pw.print(prefix); pw.print("windows="); pw.println(windows);
82 pw.print(prefix); pw.print("windowType="); pw.print(windowType);
83 pw.print(" hidden="); pw.print(hidden);
84 pw
[all...]
H A DAppWindowToken.java265 void dump(PrintWriter pw, String prefix) { argument
266 super.dump(pw, prefix);
268 pw.print(prefix); pw.print("app=true voiceInteraction="); pw.println(voiceInteraction);
271 pw.print(prefix); pw.print("allAppWindows="); pw.println(allAppWindows);
273 pw.print(prefix); pw
[all...]
H A DDisplayContent.java348 public void dump(String prefix, PrintWriter pw) { argument
349 pw.print(prefix); pw.print("Display: mDisplayId="); pw.println(mDisplayId);
351 pw.print(subPrefix); pw.print("init="); pw.print(mInitialDisplayWidth); pw.print("x");
352 pw.print(mInitialDisplayHeight); pw
[all...]
H A DWindowState.java502 final int pw = mContainingFrame.width();
508 w = pw;
523 w = pw;
572 (int) (x + mAttrs.horizontalMargin * pw),
644 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph
1436 void dump(PrintWriter pw, String prefix, boolean dumpAll) { argument
1437 pw.print(prefix); pw.print("mDisplayId="); pw
[all...]
H A DScreenRotationAnimation.java134 public void printTo(String prefix, PrintWriter pw) { argument
135 pw.print(prefix); pw.print("mSurface="); pw.print(mSurfaceControl);
136 pw.print(" mWidth="); pw.print(mWidth);
137 pw.print(" mHeight="); pw.println(mHeight);
139 pw.print(prefix); pw
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastRecord.java85 void dump(PrintWriter pw, String prefix) { argument
88 pw.print(prefix); pw.print(this); pw.print(" to user "); pw.println(userId);
89 pw.print(prefix); pw.println(intent.toInsecureString());
91 pw.print(prefix); pw.print(" targetComp: "); pw
[all...]
H A DUserStartedState.java47 void dump(String prefix, PrintWriter pw) { argument
48 pw.print(prefix); pw.print("mState=");
50 case STATE_BOOTING: pw.print("BOOTING"); break;
51 case STATE_RUNNING: pw.print("RUNNING"); break;
52 case STATE_STOPPING: pw.print("STOPPING"); break;
53 case STATE_SHUTDOWN: pw.print("SHUTDOWN"); break;
54 default: pw.print(mState); break;
56 if (switching) pw.print(" SWITCHING");
57 if (initializing) pw
[all...]
H A DIntentBindRecord.java51 void dump(PrintWriter pw, String prefix) { argument
52 pw.print(prefix); pw.print("service="); pw.println(service);
53 dumpInService(pw, prefix);
56 void dumpInService(PrintWriter pw, String prefix) { argument
57 pw.print(prefix); pw.print("intent={");
58 pw.print(intent.getIntent().toShortString(false, true, false, false));
59 pw
[all...]
H A DProcessRecord.java178 void dump(PrintWriter pw, String prefix) { argument
181 pw.print(prefix); pw.print("user #"); pw.print(userId);
182 pw.print(" uid="); pw.print(info.uid);
184 pw.print(" ISOLATED uid="); pw.print(uid);
186 pw.println();
188 pw
[all...]
H A DContentProviderRecord.java142 void dump(PrintWriter pw, String prefix, boolean full) { argument
144 pw.print(prefix); pw.print("package=");
145 pw.print(info.applicationInfo.packageName);
146 pw.print(" process="); pw.println(info.processName);
148 pw.print(prefix); pw.print("proc="); pw.println(proc);
150 pw
[all...]
H A DBroadcastFilter.java43 public void dump(PrintWriter pw, String prefix) { argument
44 dumpInReceiverList(pw, new PrintWriterPrinter(pw), prefix);
45 receiverList.dumpLocal(pw, prefix);
48 public void dumpBrief(PrintWriter pw, String prefix) { argument
49 dumpBroadcastFilterState(pw, prefix);
52 public void dumpInReceiverList(PrintWriter pw, Printer pr, String prefix) { argument
54 dumpBroadcastFilterState(pw, prefix);
57 void dumpBroadcastFilterState(PrintWriter pw, String prefix) { argument
59 pw
[all...]
H A DServiceRecord.java169 void dumpStartList(PrintWriter pw, String prefix, List<StartItem> list, long now) { argument
173 pw.print(prefix); pw.print("#"); pw.print(i);
174 pw.print(" id="); pw.print(si.id);
176 pw.print(" dur=");
177 TimeUtils.formatDuration(si.deliveredTime, now, pw);
180 pw.print(" dc="); pw
199 dump(PrintWriter pw, String prefix) argument
[all...]
H A DReceiverList.java68 void dumpLocal(PrintWriter pw, String prefix) { argument
69 pw.print(prefix); pw.print("app="); pw.print(app != null ? app.toShortString() : null);
70 pw.print(" pid="); pw.print(pid); pw.print(" uid="); pw.print(uid);
71 pw.print(" user="); pw
78 dump(PrintWriter pw, String prefix) argument
[all...]
H A DActivityRecord.java174 void dump(PrintWriter pw, String prefix) { argument
176 pw.print(prefix); pw.print("packageName="); pw.print(packageName);
177 pw.print(" processName="); pw.println(processName);
178 pw.print(prefix); pw.print("launchedFromUid="); pw.print(launchedFromUid);
179 pw
[all...]
H A DProcessStatsService.java387 boolean dumpFilteredProcessesCsvLocked(PrintWriter pw, String header, argument
394 pw.println(header);
396 ProcessStats.dumpProcessListCsv(pw, procs, sepScreenStates, screenStates,
554 private void dumpAggregatedStats(PrintWriter pw, long aggregateHours, long now, argument
560 pw.println("Unable to build stats!");
567 pw.print("Failure reading: "); pw.println(stats.mReadError);
571 stats.dumpCheckinLocked(pw, reqPackage);
574 stats.dumpLocked(pw, reqPackage, now, !dumpFullDetails, dumpAll, activeOnly);
576 stats.dumpSummaryLocked(pw, reqPackag
581 dumpHelp(PrintWriter pw) argument
610 dump(FileDescriptor fd, PrintWriter pw, String[] args) argument
627 dumpInner(FileDescriptor fd, PrintWriter pw, String[] args) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDebugService.java45 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
53 pw.println("Telephony DebugService: Could not getDefaultPhone e=" + e);
59 pw.println("Telephony DebugService: Could not PhoneBase e=" + e);
67 pw.println();
68 pw.println("++++++++++++++++++++++++++++++++");
69 pw.flush();
71 phoneBase.dump(fd, pw, args);
75 pw.flush();
76 pw.println("++++++++++++++++++++++++++++++++");
78 phoneBase.mDcTracker.dump(fd, pw, arg
[all...]
/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/services/core/java/com/android/server/
H A DDiskStatsService.java45 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
70 pw.print("Test-Error: ");
71 pw.println(error.toString());
73 pw.print("Latency: ");
74 pw.print(after - before);
75 pw.println("ms [512B Data Write]");
78 reportFreeSpace(Environment.getDataDirectory(), "Data", pw);
79 reportFreeSpace(Environment.getDownloadCacheDirectory(), "Cache", pw);
80 reportFreeSpace(new File("/system"), "System", pw);
86 private void reportFreeSpace(File path, String name, PrintWriter pw) { argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DDumpUtils.java38 public static void dumpAsync(Handler handler, final Dump dump, PrintWriter pw, long timeout) { argument
48 pw.print(sw.toString());
50 pw.println("... timed out");
55 void dump(PrintWriter pw); argument
/frameworks/base/core/tests/benchmarks/src/com/android/internal/util/
H A DIndentingPrintWriterBenchmark.java114 private void dumpSelf(PrintWriter pw) { argument
115 pw.print("Node ");
116 pw.print(name);
117 pw.print(" first ");
118 pw.print(512);
119 pw.print(" second ");
120 pw.print(1024);
121 pw.print(" third ");
122 pw.println(2048);
125 public void dumpDirect(PrintWriter pw, in argument
138 dumpIndenting(IndentingPrintWriter pw) argument
[all...]
/frameworks/base/core/java/android/os/
H A DBatteryStats.java225 public abstract void logState(Printer pw, String prefix); argument
244 public abstract void logState(Printer pw, String prefix); argument
273 public abstract void logState(Printer pw, String prefix); argument
1828 * @param pw the PageWriter to dump log to
1833 private static final void dumpLine(PrintWriter pw, int uid, String category, String type, argument
1835 pw.print(BATTERY_STATS_CHECKIN_VERSION); pw.print(',');
1836 pw.print(uid); pw.print(',');
1837 pw
1850 dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid) argument
1859 dumpCheckinLocked(Context context, PrintWriter pw, int which, int reqUid, boolean wifiOnly) argument
2333 dumpLocked(Context context, PrintWriter pw, String prefix, int which, int reqUid) argument
2339 dumpLocked(Context context, PrintWriter pw, String prefix, final int which, int reqUid, boolean wifiOnly) argument
3368 printBitDescriptions(PrintWriter pw, int oldval, int newval, HistoryTag wakelockTag, BitDescription[] descriptions, boolean longNames) argument
3441 printNextItem(PrintWriter pw, HistoryItem rec, long baseTime, boolean checkin, boolean verbose) argument
3645 printSizeValue(PrintWriter pw, long size) argument
3672 dumpDurationSteps(PrintWriter pw, String header, long[] steps, int count, boolean checkin) argument
3747 dumpHistoryLocked(PrintWriter pw, int flags, long histStart, boolean checkin) argument
3836 dumpLocked(Context context, PrintWriter pw, int flags, int reqUid, long histStart) argument
3953 dumpCheckinLocked(Context context, PrintWriter pw, List<ApplicationInfo> apps, int flags, long histStart) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java100 void dump(PrintWriter pw, String prefix, Context baseContext) { argument
102 pw.println(prefix + this);
103 pw.println(prefix + " uid=" + sbn.getUid() + " userId=" + sbn.getUserId());
104 pw.println(prefix + " icon=0x" + Integer.toHexString(notification.icon)
106 pw.println(prefix + " pri=" + notification.priority + " score=" + sbn.getScore());
107 pw.println(prefix + " key=" + sbn.getKey());
108 pw.println(prefix + " groupKey=" + getGroupKey());
109 pw.println(prefix + " contentIntent=" + notification.contentIntent);
110 pw.println(prefix + " deleteIntent=" + notification.deleteIntent);
111 pw
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeParameters.java46 public void dump(PrintWriter pw) { argument
47 pw.println(" DozeParameters:");
48 pw.print(" getDisplayStateSupported(): "); pw.println(getDisplayStateSupported());
49 pw.print(" getPulseDuration(): "); pw.println(getPulseDuration());
50 pw.print(" getPulseInDuration(): "); pw.println(getPulseInDuration());
51 pw.print(" getPulseInVisibleDuration(): "); pw
[all...]

Completed in 1193 milliseconds

1234567891011>>