/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 | 37 val noMan: NotificationManager, constant in com.android.systemui.statusbar.policy.BatteryStateNotifier 56 noMan.createNotificationChannel(channel) in onBatteryUnknownStateChanged() 74 noMan.notify(TAG, ID, builder.build()) in onBatteryUnknownStateChanged() 83 noMan.cancel(ID) in scheduleNotificationCancel()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | InstantAppNotifier.java | 110 NotificationManager noMan = mContext.getSystemService(NotificationManager.class); in start() local 111 for (StatusBarNotification notification : noMan.getActiveNotifications()) { in start() 113 noMan.cancel(notification.getTag(), notification.getId()); in start() 149 NotificationManager noMan = mContext.getSystemService(NotificationManager.class); in updateForegroundInstantApps() local 164 checkAndPostForStack(focusedTask, notifs, noMan, pm); in updateForegroundInstantApps() 177 noMan.cancelAsUser( in updateForegroundInstantApps() 193 @NonNull NotificationManager noMan, in checkAndPostForStack() argument 210 noMan, in checkAndPostForStack() 224 @NonNull NotificationManager noMan, in postInstantAppNotif() argument 314 noMan.notifyAsUser( in postInstantAppNotif()
|
/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 | 1310 INotificationManager noMan = getNotificationInterface(); in registerAsSystemService() local 1313 noMan.registerListener(mWrapper, componentName, currentUser); in registerAsSystemService() 1327 INotificationManager noMan = getNotificationInterface(); in unregisterAsSystemService() local 1328 noMan.unregisterListener(mWrapper, mCurrentUser); in unregisterAsSystemService() 1339 INotificationManager noMan = INotificationManager.Stub.asInterface( in requestRebind() local 1342 noMan.requestBindListener(componentName); in requestRebind() 1354 INotificationManager noMan = INotificationManager.Stub.asInterface( in requestUnbind() local 1357 noMan.requestUnbindListenerComponent(componentName); in requestUnbind() 1375 INotificationManager noMan = getNotificationInterface(); in requestUnbind() local 1377 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 222 noMan.getRecentBlockedNotificationChannelGroupsForPackage(packageName!!, appUid!!) in <lambda>() 232 noMan.areNotificationsEnabledForPackage(packageName!!, appUid!!) in <lambda>() 241 noMan.setNotificationsEnabledForPackage(packageName!!, appUid!!, b) in <lambda>() 250 noMan.updateNotificationChannelForPackage(packageName!!, appUid!!, channel) in <lambda>()
|
/frameworks/base/services/tests/powerstatstests/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 | 93 INotificationManager noMan = service.getNoMan(); in testGetActiveNotifications_notNull() local 94 when(noMan.getActiveNotificationsFromListener(any(), any(), anyInt())).thenReturn(null); in testGetActiveNotifications_notNull() 106 INotificationManager noMan = service.getNoMan(); in testGetActiveNotifications_handlesBinderErrors() local 107 when(noMan.getActiveNotificationsFromListener(any(), any(), anyInt())) in testGetActiveNotifications_handlesBinderErrors()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | CentralSurfacesImpl.java | 2893 NotificationManager noMan = (NotificationManager) 2895 noMan.cancel(com.android.internal.messages.nano.SystemMessageProto.SystemMessage.
|