Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DEapFailureNotifierTest.java145 StatusBarNotification[] activeNotifications = new StatusBarNotification[1]; in onEapFailureEapFailureConfigWithOverride() local
146 activeNotifications[0] = new StatusBarNotification("android", "", 56, "", 0, 0, 0, in onEapFailureEapFailureConfigWithOverride()
148 when(mWifiNotificationManager.getActiveNotifications()).thenReturn(activeNotifications); in onEapFailureEapFailureConfigWithOverride()
186 StatusBarNotification[] activeNotifications = new StatusBarNotification[1]; in onEapFailureWithDefinedErrorCodeWithoutNotificationShown() local
187 activeNotifications[0] = new StatusBarNotification("android", "", 56, "", 0, 0, 0, in onEapFailureWithDefinedErrorCodeWithoutNotificationShown()
189 when(mWifiNotificationManager.getActiveNotifications()).thenReturn(activeNotifications); in onEapFailureWithDefinedErrorCodeWithoutNotificationShown()
213 StatusBarNotification[] activeNotifications = new StatusBarNotification[1]; in onEapFailure_showNotificationFalse_notShown() local
214 activeNotifications[0] = new StatusBarNotification("android", "", 56, "", 0, 0, 0, in onEapFailure_showNotificationFalse_notShown()
216 when(mWifiNotificationManager.getActiveNotifications()).thenReturn(activeNotifications); in onEapFailure_showNotificationFalse_notShown()
236 StatusBarNotification[] activeNotifications = new StatusBarNotification[1]; in onEapFailureWithDefinedErrorCodeWithNotificationShownWithoutSameSsid() local
[all …]
/packages/apps/Dialer/java/com/android/dialer/notification/
DNotificationThrottler.java72 StatusBarNotification[] activeNotifications = notificationManager.getActiveNotifications(); in throttle() local
73 if (activeNotifications.length > HIGH_GLOBAL_NOTIFICATION_COUNT in throttle()
78 activeNotifications.length); in throttle()
86 for (StatusBarNotification currentNotification : activeNotifications) { in throttle()
/packages/apps/Launcher3/src/com/android/launcher3/notification/
DNotificationListener.java143 List<StatusBarNotification> activeNotifications = null; in handleWorkerMessage() local
145 activeNotifications = Arrays.stream(getActiveNotificationsSafely(null)) in handleWorkerMessage()
149 activeNotifications = new ArrayList<>(); in handleWorkerMessage()
152 mUiHandler.obtainMessage(message.what, activeNotifications).sendToTarget(); in handleWorkerMessage()
328 void onNotificationFullRefresh(List<StatusBarNotification> activeNotifications); in onNotificationFullRefresh() argument
/packages/services/Mtp/src/com/android/mtp/
DMtpDocumentsService.java100 final StatusBarNotification[] activeNotifications = in updateForegroundState() local
102 for (final StatusBarNotification notification : activeNotifications) { in updateForegroundState()
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupDataProvider.java106 public void onNotificationFullRefresh(List<StatusBarNotification> activeNotifications) { in onNotificationFullRefresh() argument
107 if (activeNotifications == null) return; in onNotificationFullRefresh()
111 for (StatusBarNotification notification : activeNotifications) { in onNotificationFullRefresh()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DEapFailureNotifier.java123 StatusBarNotification[] activeNotifications = mNotificationManager.getActiveNotifications(); in onEapFailure() local
124 for (StatusBarNotification activeNotification : activeNotifications) { in onEapFailure()
/packages/modules/Permission/tests/cts/permission/permissionTestUtilLib/src/android/permission/cts/
DCtsNotificationListenerServiceUtils.kt92 for (notification in notificationService.activeNotifications) { in <lambda>()
/packages/apps/Car/Notification/src/com/android/car/notification/
DCarHeadsUpNotificationManager.java238 Map<String, AlertEntry> activeNotifications) { in maybeShowHeadsUp() argument
256 boolean containsKeyFlag = !activeNotifications.containsKey(alertEntry.getKey()); in maybeShowHeadsUp()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/privacysources/
DNotificationListenerCheck.kt648 .activeNotifications in getCurrentlyShownNotificationLocked()
DAccessibilitySourceService.kt507 val notifications = notificationsManager.activeNotifications in getCurrentNotification()