Home
last modified time | relevance | path

Searched refs:notifLiveDataStoreImpl (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DDataStoreCoordinatorTest.kt51 @Mock private lateinit var notifLiveDataStoreImpl: NotifLiveDataStoreImpl variable in com.android.systemui.statusbar.notification.collection.coordinator.DataStoreCoordinatorTest
59 coordinator = DataStoreCoordinator(notifLiveDataStoreImpl) in setUp()
69 verify(notifLiveDataStoreImpl).setActiveNotifList(eq(listOf(entry))) in testUpdateDataStore_withOneEntry()
70 verifyNoMoreInteractions(notifLiveDataStoreImpl) in testUpdateDataStore_withOneEntry()
93 verify(notifLiveDataStoreImpl).setActiveNotifList(capture()) in testUpdateDataStore_withGroups()
104 verifyNoMoreInteractions(notifLiveDataStoreImpl) in testUpdateDataStore_withGroups()
113 verify(notifLiveDataStoreImpl).setActiveNotifList(eq(listOf())) in notificationEntry()
114 verifyNoMoreInteractions(notifLiveDataStoreImpl) in notificationEntry()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DDataStoreCoordinator.kt35 private val notifLiveDataStoreImpl: NotifLiveDataStoreImpl in <lambda>() constant in com.android.systemui.statusbar.notification.collection.coordinator.DataStoreCoordinator
43 d.dump("notifLiveDataStoreImpl", notifLiveDataStoreImpl) in <lambda>()
48 notifLiveDataStoreImpl.setActiveNotifList(flatEntryList) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/
DNotificationsModule.java254 NotifLiveDataStore bindNotifLiveDataStore(NotifLiveDataStoreImpl notifLiveDataStoreImpl); in bindNotifLiveDataStore() argument