Lines Matching refs:pw

190         void dump(PrintWriter pw, String prefix, Context baseContext) {
191 pw.println(prefix + this);
192 pw.println(prefix + " icon=0x" + Integer.toHexString(notification.icon)
194 pw.println(prefix + " contentIntent=" + notification.contentIntent);
195 pw.println(prefix + " deleteIntent=" + notification.deleteIntent);
196 pw.println(prefix + " tickerText=" + notification.tickerText);
197 pw.println(prefix + " contentView=" + notification.contentView);
198 pw.println(prefix + " defaults=0x" + Integer.toHexString(notification.defaults));
199 pw.println(prefix + " flags=0x" + Integer.toHexString(notification.flags));
200 pw.println(prefix + " sound=" + notification.sound);
201 pw.println(prefix + " vibrate=" + Arrays.toString(notification.vibrate));
202 pw.println(prefix + " ledARGB=0x" + Integer.toHexString(notification.ledARGB)
237 void dump(PrintWriter pw, String prefix) {
238 pw.println(prefix + this);
1217 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1220 pw.println("Permission Denial: can't dump NotificationManager from from pid="
1226 pw.println("Current Notification Manager state:");
1233 pw.println(" Toast Queue:");
1235 mToastQueue.get(i).dump(pw, " ");
1237 pw.println(" ");
1245 pw.println(" Notification List:");
1247 mNotificationList.get(i).dump(pw, " ", mContext);
1249 pw.println(" ");
1254 pw.println(" Lights List:");
1256 mLights.get(i).dump(pw, " ", mContext);
1258 pw.println(" ");
1261 pw.println(" mSoundNotification=" + mSoundNotification);
1262 pw.println(" mSound=" + mSound);
1263 pw.println(" mVibrateNotification=" + mVibrateNotification);
1264 pw.println(" mDisabledNotifications=0x" + Integer.toHexString(mDisabledNotifications));
1265 pw.println(" mSystemReady=" + mSystemReady);