Home
last modified time | relevance | path

Searched refs:mINotificationManager (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationConversationInfo.java87 private INotificationManager mINotificationManager; field in NotificationConversationInfo
210 mINotificationManager = iNotificationManager; in bindNotification()
238 getContext(), mINotificationManager, entry, mNotificationChannel); in bindNotification()
241 mAppBubble = mINotificationManager.getBubblePreferenceForPackage(mPackageName, mAppUid); in bindNotification()
379 mINotificationManager.getNotificationChannelGroupForPackage( in bindGroup()
525 new UpdateChannelRunnable(mINotificationManager, mPackageName, in updateChannel()
536 int allowedSenders = mINotificationManager in willBypassDnd()
599 private final INotificationManager mINotificationManager; field in UpdateChannelRunnable
608 mINotificationManager = notificationManager; in UpdateChannelRunnable()
624 mINotificationManager.setBubblesAllowed(mAppPkg, mAppUid, in run()
[all …]
H A DNotificationInfo.java96 private INotificationManager mINotificationManager; field in NotificationInfo
208 mINotificationManager = iNotificationManager; in bindNotification()
232 int numTotalChannels = mINotificationManager.getNumNotificationChannelsForPackage( in bindNotification()
404 mINotificationManager.getNotificationChannelGroupForPackage(
446 new UpdateImportanceRunnable(mINotificationManager, mPackageName, mAppUid,
642 private final INotificationManager mINotificationManager;
654 mINotificationManager = notificationManager;
668 mINotificationManager.unlockNotificationChannel(
673 mINotificationManager.updateNotificationChannelForPackage(
679 mINotificationManager.setNotificationsEnabledWithImportanceLockForPackage(
H A DPartialConversationInfo.java61 private INotificationManager mINotificationManager; field in PartialConversationInfo
111 mINotificationManager = iNotificationManager; in bindNotification()
221 mINotificationManager.getNotificationChannelGroupForPackage(
/aosp12/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/system/
H A DResetAppPrefFragmentTest.java82 private INotificationManager mINotificationManager; field in ResetAppPrefFragmentTest
98 mINotificationManager); in setUp()
131 verify(mINotificationManager) in resetClicked_resetsNotificationsForApps()
133 verify(mINotificationManager) in resetClicked_resetsNotificationsForApps()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
H A DPeopleSpaceWidgetManager.java134 private INotificationManager mINotificationManager; field in PeopleSpaceWidgetManager
173 mINotificationManager = INotificationManager.Stub.asInterface( in PeopleSpaceWidgetManager()
252 mINotificationManager = iNotificationManager; in PeopleSpaceWidgetManager()
994 mINotificationManager.getConversations(true).getList(); in getPriorityTiles()
1012 mINotificationManager.getConversations(false).getList(); in getRecentTiles()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotificationGutsManagerTest.java130 @Mock private INotificationManager mINotificationManager; field in NotificationGutsManagerTest
159 mHighPriorityProvider, mINotificationManager, mNotificationEntryManager, in setUp()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/people/widget/
H A DPeopleSpaceWidgetManagerTest.java246 private INotificationManager mINotificationManager; field in PeopleSpaceWidgetManagerTest
275 Optional.of(mBubbles), mUserManager, mBackupManager, mINotificationManager, in setUp()
325 when(mINotificationManager.getConversations(anyBoolean())).thenReturn( in testGetRecentTilesReturnsSortedListWithOnlyRecentConversations()
363 when(mINotificationManager.getConversations(anyBoolean())).thenReturn( in testGetPriorityTilesReturnsSortedListWithOnlyImportantConversations()
389 when(mINotificationManager.getConversations(anyBoolean())).thenReturn( in testGetTilesReturnsNothingInQuietMode()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDependency.java348 @Inject Lazy<INotificationManager> mINotificationManager; field in Dependency
555 mProviders.put(INotificationManager.class, mINotificationManager::get); in start()