Loading services/core/java/com/android/server/notification/NotificationManagerService.java +13 −8 Original line number Diff line number Diff line Loading @@ -3125,6 +3125,8 @@ public class NotificationManagerService extends SystemService { protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { if (!DumpUtils.checkDumpAndUsageStatsPermission(getContext(), TAG, pw)) return; final DumpFilter filter = DumpFilter.parseFromArguments(args); final long token = Binder.clearCallingIdentity(); try { if (filter.stats) { dumpJson(pw, filter); } else if (filter.proto) { Loading @@ -3134,6 +3136,9 @@ public class NotificationManagerService extends SystemService { } else { dumpImpl(pw, filter); } } finally { Binder.restoreCallingIdentity(token); } } @Override Loading Loading
services/core/java/com/android/server/notification/NotificationManagerService.java +13 −8 Original line number Diff line number Diff line Loading @@ -3125,6 +3125,8 @@ public class NotificationManagerService extends SystemService { protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { if (!DumpUtils.checkDumpAndUsageStatsPermission(getContext(), TAG, pw)) return; final DumpFilter filter = DumpFilter.parseFromArguments(args); final long token = Binder.clearCallingIdentity(); try { if (filter.stats) { dumpJson(pw, filter); } else if (filter.proto) { Loading @@ -3134,6 +3136,9 @@ public class NotificationManagerService extends SystemService { } else { dumpImpl(pw, filter); } } finally { Binder.restoreCallingIdentity(token); } } @Override Loading