Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationListenerWithPlugins.java58 StatusBarNotification[] activeNotifications = super.getActiveNotifications(); in getActiveNotifications() local
60 activeNotifications = plugin.getActiveNotifications(activeNotifications); in getActiveNotifications()
62 return activeNotifications; in getActiveNotifications()
DStatusBar.java2705 ArrayList<NotificationEntry> activeNotifications = mEntryManager.getNotificationData() in resetUserExpandedStates() local
2707 final int notificationCount = activeNotifications.size(); in resetUserExpandedStates()
2709 NotificationEntry entry = activeNotifications.get(i); in resetUserExpandedStates()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DInstallCarrierAppUtils.java94 StatusBarNotification[] activeNotifications = notificationManager.getActiveNotifications(); in hideAllNotifications() local
96 if (activeNotifications == null) { in hideAllNotifications()
100 for (StatusBarNotification notification : activeNotifications) { in hideAllNotifications()
154 StatusBarNotification[] activeNotifications = in isPackageInstallNotificationActive() local
157 for (StatusBarNotification notification : activeNotifications) { in isPackageInstallNotificationActive()
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DNotificationListenerController.java41 StatusBarNotification[] activeNotifications) { in getActiveNotifications() argument
42 return activeNotifications; in getActiveNotifications()
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
DMtpDocumentsService.java98 final StatusBarNotification[] activeNotifications = in updateForegroundState() local
100 for (final StatusBarNotification notification : activeNotifications) { in updateForegroundState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java143 ArrayList<NotificationEntry> activeNotifications = mEntryManager.getNotificationData() in updateNotificationViews() local
145 ArrayList<ExpandableNotificationRow> toShow = new ArrayList<>(activeNotifications.size()); in updateNotificationViews()
146 final int N = activeNotifications.size(); in updateNotificationViews()
148 NotificationEntry ent = activeNotifications.get(i); in updateNotificationViews()
DNotificationMediaManager.java278 ArrayList<NotificationEntry> activeNotifications = in findAndUpdateMediaNotifications() local
280 final int N = activeNotifications.size(); in findAndUpdateMediaNotifications()
286 final NotificationEntry entry = activeNotifications.get(i); in findAndUpdateMediaNotifications()
326 final NotificationEntry entry = activeNotifications.get(i); in findAndUpdateMediaNotifications()
/frameworks/base/core/java/android/service/notification/
DNotificationListenerService.java833 StatusBarNotification[] activeNotifications = getActiveNotifications(null, TRIM_FULL); in getActiveNotifications() local
834 return activeNotifications != null ? activeNotifications : new StatusBarNotification[0]; in getActiveNotifications()
869 StatusBarNotification[] activeNotifications = getActiveNotifications(null, trim); in getActiveNotifications() local
870 return activeNotifications != null ? activeNotifications : new StatusBarNotification[0]; in getActiveNotifications()
886 StatusBarNotification[] activeNotifications = getActiveNotifications(keys, TRIM_FULL); in getActiveNotifications() local
887 return activeNotifications != null ? activeNotifications : new StatusBarNotification[0]; in getActiveNotifications()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationLogger.java124 ArrayList<NotificationEntry> activeNotifications = mEntryManager
126 int N = activeNotifications.size();
128 NotificationEntry entry = activeNotifications.get(i);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DBypassHeadsUpNotifier.kt114 if (!entryManager.notificationData.activeNotifications.contains(entry)) { in <lambda>()
/frameworks/base/packages/Shell/tests/src/com/android/shell/
DBugreportReceiverTest.java643 StatusBarNotification[] activeNotifications = nm.getActiveNotifications(); in cancelExistingNotifications() local
644 if (activeNotifications.length == 0) { in cancelExistingNotifications()
648 Log.w(TAG, getName() + ": " + activeNotifications.length + " active notifications"); in cancelExistingNotifications()