/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
H A D | BatteryStateNotifierTest.kt | 48 @Mock private lateinit var noMan: NotificationManager 58 notifier = BatteryStateNotifier(batteryController, noMan, executor, context) 67 verify(noMan).notify(anyString(), anyInt(), anyObject()) 76 verify(noMan).cancel(anyInt())
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | BatteryStateNotifier.kt | 36 val noMan: NotificationManager, 55 noMan.createNotificationChannel(channel) 73 noMan.notify(TAG, ID, builder.build()) 82 noMan.cancel(ID)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | InstantAppNotifier.java | 109 NotificationManager noMan = mContext.getSystemService(NotificationManager.class); in start() local 110 for (StatusBarNotification notification : noMan.getActiveNotifications()) { in start() 112 noMan.cancel(notification.getTag(), notification.getId()); in start() 148 NotificationManager noMan = mContext.getSystemService(NotificationManager.class); in updateForegroundInstantApps() local 163 checkAndPostForStack(focusedTask, notifs, noMan, pm); in updateForegroundInstantApps() 176 noMan.cancelAsUser( in updateForegroundInstantApps() 192 @NonNull NotificationManager noMan, in checkAndPostForStack() argument 209 noMan, in checkAndPostForStack() 223 @NonNull NotificationManager noMan, in postInstantAppNotif() argument 310 noMan.notifyAsUser( in postInstantAppNotif()
|
/aosp14/frameworks/base/core/java/android/service/notification/ |
H A D | ConditionProviderService.java | 159 INotificationManager noMan = INotificationManager.Stub.asInterface( in requestRebind() local 162 noMan.requestBindProvider(componentName); in requestRebind() 179 INotificationManager noMan = getNotificationInterface(); in requestUnbind() local 181 noMan.requestUnbindProvider(mProvider); in requestUnbind()
|
H A D | NotificationListenerService.java | 1289 INotificationManager noMan = getNotificationInterface(); in registerAsSystemService() local 1292 noMan.registerListener(mWrapper, componentName, currentUser); in registerAsSystemService() 1306 INotificationManager noMan = getNotificationInterface(); in unregisterAsSystemService() local 1307 noMan.unregisterListener(mWrapper, mCurrentUser); in unregisterAsSystemService() 1318 INotificationManager noMan = INotificationManager.Stub.asInterface( in requestRebind() local 1321 noMan.requestBindListener(componentName); in requestRebind() 1333 INotificationManager noMan = INotificationManager.Stub.asInterface( in requestUnbind() local 1336 noMan.requestUnbindListenerComponent(componentName); in requestUnbind() 1354 INotificationManager noMan = getNotificationInterface(); in requestUnbind() local 1356 noMan.requestUnbindListener(mWrapper); in requestUnbind()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | ChannelEditorDialogController.kt | 62 private val noMan: INotificationManager, 234 noMan.getNotificationChannelGroupsForPackage(packageName!!, appUid!!, false) 244 noMan.areNotificationsEnabledForPackage(packageName!!, appUid!!) 253 noMan.setNotificationsEnabledForPackage(packageName!!, appUid!!, b) 262 noMan.updateNotificationChannelForPackage(packageName!!, appUid!!, channel)
|
/aosp14/frameworks/base/core/tests/coretests/BstatsTestApp/src/com/android/coretests/apps/bstatstestapp/ |
H A D | TestService.java | 94 final NotificationManager noMan = getSystemService(NotificationManager.class); in startForeground() local 95 noMan.createNotificationChannel(new NotificationChannel( in startForeground()
|
/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
H A D | NotificationListenerServiceTest.java | 95 INotificationManager noMan = service.getNoMan(); in testGetActiveNotifications_notNull() local 96 when(noMan.getActiveNotificationsFromListener(any(), any(), anyInt())).thenReturn(null); in testGetActiveNotifications_notNull()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | CentralSurfacesImpl.java | 3267 NotificationManager noMan = (NotificationManager) 3269 noMan.cancel(com.android.internal.messages.nano.SystemMessageProto.SystemMessage.
|