Home
last modified time | relevance | path

Searched refs:activeNotifications (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationListenerWithPlugins.java60 StatusBarNotification[] activeNotifications = super.getActiveNotifications(); in getActiveNotifications() local
62 activeNotifications = plugin.getActiveNotifications(activeNotifications); in getActiveNotifications()
64 return activeNotifications; in getActiveNotifications()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DInstallCarrierAppUtils.java95 StatusBarNotification[] activeNotifications = notificationManager.getActiveNotifications(); in hideAllNotifications() local
97 if (activeNotifications == null) { in hideAllNotifications()
101 for (StatusBarNotification notification : activeNotifications) { in hideAllNotifications()
155 StatusBarNotification[] activeNotifications = in isPackageInstallNotificationActive() local
158 for (StatusBarNotification notification : activeNotifications) { in isPackageInstallNotificationActive()
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DNotificationListenerController.java62 StatusBarNotification[] activeNotifications) { in getActiveNotifications() argument
63 return activeNotifications; in getActiveNotifications()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java156 List<NotificationEntry> activeNotifications = mEntryManager.getVisibleNotifications(); in updateNotificationViews() local
157 ArrayList<ExpandableNotificationRow> toShow = new ArrayList<>(activeNotifications.size()); in updateNotificationViews()
158 final int N = activeNotifications.size(); in updateNotificationViews()
160 NotificationEntry ent = activeNotifications.get(i); in updateNotificationViews()
/frameworks/base/core/java/android/service/notification/
DNotificationListenerService.java953 StatusBarNotification[] activeNotifications = getActiveNotifications(null, TRIM_FULL); in getActiveNotifications() local
954 return activeNotifications != null ? activeNotifications : new StatusBarNotification[0]; in getActiveNotifications()
989 StatusBarNotification[] activeNotifications = getActiveNotifications(null, trim); in getActiveNotifications() local
990 return activeNotifications != null ? activeNotifications : new StatusBarNotification[0]; in getActiveNotifications()
1006 StatusBarNotification[] activeNotifications = getActiveNotifications(keys, TRIM_FULL); in getActiveNotifications() local
1007 return activeNotifications != null ? activeNotifications : new StatusBarNotification[0]; in getActiveNotifications()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationLogger.java130 List<NotificationEntry> activeNotifications = mEntryManager.getVisibleNotifications();
131 int N = activeNotifications.size();
133 NotificationEntry entry = activeNotifications.get(i);
/frameworks/base/packages/Shell/tests/src/com/android/shell/
DBugreportReceiverTest.java556 StatusBarNotification[] activeNotifications = nm.getActiveNotifications(); in cancelExistingNotifications() local
557 if (activeNotifications.length == 0) { in cancelExistingNotifications()
561 Log.w(TAG, getName() + ": " + activeNotifications.length + " active notifications"); in cancelExistingNotifications()