Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DEapFailureNotifierTest.java113 StatusBarNotification[] activeNotifications = new StatusBarNotification[1]; in onEapFailureWithDefinedErroCodeWithoutNotificationShown() local
114 activeNotifications[0] = new StatusBarNotification("android", "", 56, "", 0, 0, 0, in onEapFailureWithDefinedErroCodeWithoutNotificationShown()
116 when(mNotificationManager.getActiveNotifications()).thenReturn(activeNotifications); in onEapFailureWithDefinedErroCodeWithoutNotificationShown()
138 StatusBarNotification[] activeNotifications = new StatusBarNotification[1]; in onEapFailureWithDefinedErroCodeWithNotificationShownWithoutSameSsid() local
139 activeNotifications[0] = new StatusBarNotification("android", "", 57, "", 0, 0, 0, in onEapFailureWithDefinedErroCodeWithNotificationShownWithoutSameSsid()
141 when(mNotificationManager.getActiveNotifications()).thenReturn(activeNotifications); in onEapFailureWithDefinedErroCodeWithNotificationShownWithoutSameSsid()
164 StatusBarNotification[] activeNotifications = new StatusBarNotification[1]; in onEapFailureWithDefinedErroCodeWithNotificationShownWithSameSsid() local
165 activeNotifications[0] = new StatusBarNotification("android", "", 57, "", 0, 0, 0, in onEapFailureWithDefinedErroCodeWithNotificationShownWithSameSsid()
167 when(mNotificationManager.getActiveNotifications()).thenReturn(activeNotifications); in onEapFailureWithDefinedErroCodeWithNotificationShownWithSameSsid()
184 StatusBarNotification[] activeNotifications = new StatusBarNotification[1]; in onEapFailureWithUnDefinedErrorCode() local
[all …]
/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()
/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.java41 StatusBarNotification[] activeNotifications) { in getActiveNotifications() argument
42 return activeNotifications; in getActiveNotifications()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DEapFailureNotifier.java68 StatusBarNotification[] activeNotifications = mNotificationManager.getActiveNotifications(); in onEapFailure() local
69 for (StatusBarNotification activeNotification : activeNotifications) { in onEapFailure()
/frameworks/base/core/java/android/service/notification/
DNotificationListenerService.java861 StatusBarNotification[] activeNotifications = getActiveNotifications(null, TRIM_FULL); in getActiveNotifications() local
862 return activeNotifications != null ? activeNotifications : new StatusBarNotification[0]; in getActiveNotifications()
897 StatusBarNotification[] activeNotifications = getActiveNotifications(null, trim); in getActiveNotifications() local
898 return activeNotifications != null ? activeNotifications : new StatusBarNotification[0]; in getActiveNotifications()
914 StatusBarNotification[] activeNotifications = getActiveNotifications(keys, TRIM_FULL); in getActiveNotifications() local
915 return activeNotifications != null ? activeNotifications : new StatusBarNotification[0]; in getActiveNotifications()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java151 List<NotificationEntry> activeNotifications = mEntryManager.getVisibleNotifications(); in updateNotificationViews() local
152 ArrayList<ExpandableNotificationRow> toShow = new ArrayList<>(activeNotifications.size()); in updateNotificationViews()
153 final int N = activeNotifications.size(); in updateNotificationViews()
155 NotificationEntry ent = activeNotifications.get(i); in updateNotificationViews()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationLogger.java133 List<NotificationEntry> activeNotifications = mEntryManager.getVisibleNotifications();
134 int N = activeNotifications.size();
136 NotificationEntry entry = activeNotifications.get(i);
/frameworks/base/packages/Shell/tests/src/com/android/shell/
DBugreportReceiverTest.java645 StatusBarNotification[] activeNotifications = nm.getActiveNotifications(); in cancelExistingNotifications() local
646 if (activeNotifications.length == 0) { in cancelExistingNotifications()
650 Log.w(TAG, getName() + ": " + activeNotifications.length + " active notifications"); in cancelExistingNotifications()