/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | InstantAppNotifier.java | 117 NotificationManager noMan = mContext.getSystemService(NotificationManager.class); in start() local 118 for (StatusBarNotification notification : noMan.getActiveNotifications()) { in start() 120 noMan.cancel(notification.getTag(), notification.getId()); in start() 159 NotificationManager noMan = mContext.getSystemService(NotificationManager.class); in updateForegroundInstantApps() local 174 checkAndPostForStack(focusedTask, notifs, noMan, pm); in updateForegroundInstantApps() 178 checkAndPostForPrimaryScreen(notifs, noMan, pm); in updateForegroundInstantApps() 190 noMan.cancelAsUser( in updateForegroundInstantApps() 206 @NonNull NotificationManager noMan, in checkAndPostForPrimaryScreen() argument 211 checkAndPostForStack(info, notifs, noMan, pm); in checkAndPostForPrimaryScreen() 225 @NonNull NotificationManager noMan, in checkAndPostForStack() argument [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | BatteryStateNotifierTest.kt | 48 @Mock private lateinit var noMan: NotificationManager variable in com.android.systemui.statusbar.policy.BatteryStateNotifierTest 58 notifier = BatteryStateNotifier(batteryController, noMan, executor, context) in setup() 67 verify(noMan).notify(anyString(), anyInt(), anyObject()) in testNotifyWhenStateUnknown() 76 verify(noMan).cancel(anyInt()) in testCancelAfterDelay()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | BatteryStateNotifier.kt | 36 val noMan: NotificationManager, constant in com.android.systemui.statusbar.policy.BatteryStateNotifier 55 noMan.createNotificationChannel(channel) in onBatteryUnknownStateChanged() 73 noMan.notify(TAG, ID, builder.build()) in onBatteryUnknownStateChanged() 82 noMan.cancel(ID) in scheduleNotificationCancel()
|
/frameworks/base/core/java/android/service/notification/ |
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()
|
D | NotificationListenerService.java | 1261 INotificationManager noMan = getNotificationInterface(); in registerAsSystemService() local 1264 noMan.registerListener(mWrapper, componentName, currentUser); in registerAsSystemService() 1278 INotificationManager noMan = getNotificationInterface(); in unregisterAsSystemService() local 1279 noMan.unregisterListener(mWrapper, mCurrentUser); in unregisterAsSystemService() 1290 INotificationManager noMan = INotificationManager.Stub.asInterface( in requestRebind() local 1293 noMan.requestBindListener(componentName); in requestRebind() 1311 INotificationManager noMan = getNotificationInterface(); in requestUnbind() local 1313 noMan.requestUnbindListener(mWrapper); in requestUnbind()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ChannelEditorDialogController.kt | 62 private val noMan: INotificationManager, in <lambda>() constant 234 noMan.getNotificationChannelGroupsForPackage(packageName!!, appUid!!, false) in <lambda>() 244 noMan.areNotificationsEnabledForPackage(packageName!!, appUid!!) in <lambda>() 253 noMan.setNotificationsEnabledForPackage(packageName!!, appUid!!, b) in <lambda>() 262 noMan.updateNotificationChannelForPackage(packageName!!, appUid!!, channel) in <lambda>()
|
/frameworks/base/core/tests/coretests/BstatsTestApp/src/com/android/coretests/apps/bstatstestapp/ |
D | TestService.java | 94 final NotificationManager noMan = getSystemService(NotificationManager.class); in startForeground() local 95 noMan.createNotificationChannel(new NotificationChannel( in startForeground()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationListenerServiceTest.java | 87 INotificationManager noMan = service.getNoMan(); in testGetActiveNotifications_notNull() local 88 when(noMan.getActiveNotificationsFromListener(any(), any(), anyInt())).thenReturn(null); in testGetActiveNotifications_notNull()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBar.java | 4577 NotificationManager noMan = (NotificationManager) 4579 noMan.cancel(com.android.internal.messages.nano.SystemMessageProto.SystemMessage.
|