Searched refs:noMan (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/core/java/android/service/notification/ |
D | ConditionProviderService.java | 139 INotificationManager noMan = INotificationManager.Stub.asInterface( in requestRebind() local 142 noMan.requestBindProvider(componentName); in requestRebind() 159 INotificationManager noMan = getNotificationInterface(); in requestUnbind() local 161 noMan.requestUnbindProvider(mProvider); in requestUnbind()
|
D | NotificationListenerService.java | 1102 INotificationManager noMan = getNotificationInterface(); in registerAsSystemService() local 1105 noMan.registerListener(mWrapper, componentName, currentUser); in registerAsSystemService() 1119 INotificationManager noMan = getNotificationInterface(); in unregisterAsSystemService() local 1120 noMan.unregisterListener(mWrapper, mCurrentUser); in unregisterAsSystemService() 1131 INotificationManager noMan = INotificationManager.Stub.asInterface( in requestRebind() local 1134 noMan.requestBindListener(componentName); in requestRebind() 1152 INotificationManager noMan = getNotificationInterface(); in requestUnbind() local 1154 noMan.requestUnbindListener(mWrapper); in requestUnbind()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | PhoneStatusBarPolicy.java | 257 NotificationManager noMan = mContext.getSystemService(NotificationManager.class); in PhoneStatusBarPolicy() local 258 for (StatusBarNotification notification : noMan.getActiveNotifications()) { in PhoneStatusBarPolicy() 260 noMan.cancel(notification.getTag(), notification.getId()); in PhoneStatusBarPolicy() 283 NotificationManager noMan = mContext.getSystemService(NotificationManager.class); in destroy() local 284 mCurrentNotifs.forEach(v -> noMan.cancelAsUser(v.first, SystemMessage.NOTE_INSTANT_APPS, in destroy() 533 NotificationManager noMan = mContext.getSystemService(NotificationManager.class); in updateForegroundInstantApps() local 545 checkStack(focusedStack, notifs, noMan, pm); in updateForegroundInstantApps() 550 notifs, noMan, pm); in updateForegroundInstantApps() 556 notifs.forEach(v -> noMan.cancelAsUser(v.first, SystemMessage.NOTE_INSTANT_APPS, in updateForegroundInstantApps() 562 ArraySet<Pair<String, Integer>> notifs, NotificationManager noMan, IPackageManager pm) { in checkStack() argument [all …]
|
D | StatusBar.java | 5048 NotificationManager noMan = (NotificationManager) 5050 noMan.cancel(com.android.internal.messages.nano.SystemMessageProto.SystemMessage.
|
/frameworks/base/core/tests/coretests/BstatsTestApp/src/com/android/coretests/apps/bstatstestapp/ |
D | TestService.java | 83 final NotificationManager noMan = getSystemService(NotificationManager.class); in startForeground() local 84 noMan.createNotificationChannel(new NotificationChannel( in startForeground()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationListenerServiceTest.java | 64 INotificationManager noMan = service.getNoMan(); in testGetActiveNotifications_notNull() local 65 when(noMan.getActiveNotificationsFromListener(any(), any(), anyInt())).thenReturn(null); in testGetActiveNotifications_notNull()
|
/frameworks/base/packages/ExtServices/src/android/ext/services/notification/ |
D | Assistant.java | 309 protected void setNoMan(INotificationManager noMan) { in setNoMan() argument 310 mNoMan = noMan; in setNoMan()
|