diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index 6083bc5612192..76aba25822d00 100755 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -645,7 +645,7 @@ public class NotificationManagerService extends SystemService { sb.append("Archive ("); sb.append(N); sb.append(" notification"); - sb.append((N==1)?")":"s)"); + sb.append((N == 1) ? ")" : "s)"); return sb.toString(); } @@ -718,6 +718,22 @@ public class NotificationManagerService extends SystemService { } } } + + void dumpImpl(PrintWriter pw, @NonNull DumpFilter filter) { + synchronized (mBufferLock) { + Iterator> iter = descendingIterator(); + int i = 0; + while (iter.hasNext()) { + final StatusBarNotification sbn = iter.next().first; + if (filter != null && !filter.matches(sbn)) continue; + pw.println(" " + sbn); + if (++i >= 5) { + if (iter.hasNext()) pw.println(" ..."); + break; + } + } + } + } } void loadDefaultApprovedServices(int userId) { @@ -5928,17 +5944,7 @@ public class NotificationManagerService extends SystemService { + mPreferencesHelper.shouldHideSilentStatusIcons()); } pw.println(" mArchive=" + mArchive.toString()); - Iterator> iter = mArchive.descendingIterator(); - int j=0; - while (iter.hasNext()) { - final StatusBarNotification sbn = iter.next().first; - if (filter != null && !filter.matches(sbn)) continue; - pw.println(" " + sbn); - if (++j >= 5) { - if (iter.hasNext()) pw.println(" ..."); - break; - } - } + mArchive.dumpImpl(pw, filter); if (!zenOnly) { N = mEnqueuedNotifications.size();