/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ongoingcall/ |
H A D | OngoingCallControllerTest.kt | 139 notifCollectionListener.onEntryUpdated(createOngoingCallNotifEntry()) 146 notifCollectionListener.onEntryUpdated(createOngoingCallNotifEntry()) 153 notifCollectionListener.onEntryUpdated(createNotCallNotifEntry()) 160 notifCollectionListener.onEntryUpdated(createOngoingCallNotifEntry()) 170 notifCollectionListener.onEntryUpdated( 180 notifCollectionListener.onEntryUpdated(notification.build()) 195 notifCollectionListener.onEntryUpdated(notification.build()) 286 notifCollectionListener.onEntryUpdated(createNotCallNotifEntry()) 332 notifCollectionListener.onEntryUpdated(ongoingCallNotifEntry) 349 notifCollectionListener.onEntryUpdated(createNotCallNotifEntry()) [all …]
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/ |
H A D | NotifCollectionListener.java | 63 default void onEntryUpdated(@NonNull NotificationEntry entry, boolean fromSystem) { in onEntryUpdated() method 64 onEntryUpdated(entry); in onEntryUpdated() 71 default void onEntryUpdated(@NonNull NotificationEntry entry) { in onEntryUpdated() method
|
H A D | NotifEvent.kt | 71 listener.onEntryUpdated(entry, fromSystem)
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/ |
H A D | NotifCollectionTest.java | 237 verify(mCollectionListener).onEntryUpdated(mEntryCaptor.capture()); in testEventDispatchedWhenNotifBatchPosted() 263 mListenerInOrder.verify(mCollectionListener).onEntryUpdated(entry); in testEventDispatchedWhenNotifUpdated() 1359 verify(mCollectionListener).onEntryUpdated(eq(entry)); in testSecondPostCallsUpdateWithTrue() 1360 verify(mCollectionListener).onEntryUpdated(eq(entry), eq(true)); in testSecondPostCallsUpdateWithTrue() 1382 verify(mCollectionListener).onEntryUpdated(eq(entry)); in testInternalNotifUpdaterCallsUpdate() 1383 verify(mCollectionListener).onEntryUpdated(eq(entry), eq(false)); in testInternalNotifUpdaterCallsUpdate() 1398 verify(mCollectionListener, never()).onEntryUpdated(any()); in testInternalNotifUpdaterIgnoresNew() 1399 verify(mCollectionListener, never()).onEntryUpdated(any(), anyBoolean()); in testInternalNotifUpdaterIgnoresNew() 1447 public void onEntryUpdated(NotificationEntry entry) { in onEntryUpdated() method in NotifCollectionTest.RecordingCollectionListener 1452 public void onEntryUpdated(NotificationEntry entry, boolean fromSystem) { in onEntryUpdated() method in NotifCollectionTest.RecordingCollectionListener [all …]
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/ |
H A D | BubblesManager.java | 421 BubblesManager.this.onEntryUpdated(entry); in setupNEM() 540 public void onEntryUpdated(NotificationEntry entry) { in setupNotifPipeline() 541 BubblesManager.this.onEntryUpdated(entry); in setupNotifPipeline() 564 void onEntryUpdated(NotificationEntry entry) { in onEntryUpdated() method in BubblesManager 565 mBubbles.onEntryUpdated(notifToBubbleEntry(entry), in onEntryUpdated()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/ |
H A D | OngoingCallController.kt | 89 onEntryUpdated(entry, true) 92 override fun onEntryUpdated(entry: NotificationEntry) {
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | ForegroundServiceNotificationListener.java | 88 public void onEntryUpdated(NotificationEntry entry) { in ForegroundServiceNotificationListener()
|
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
H A D | Bubbles.java | 176 void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp); in onEntryUpdated() method
|
H A D | BubbleController.java | 981 private void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp) { in onEntryUpdated() method in BubbleController 1040 onEntryUpdated(entry, shouldBubbleUp && !entry.getRanking().isSuspended()); in onRankingUpdated() 1598 public void onEntryUpdated(BubbleEntry entry, boolean shouldBubbleUp) { in onEntryUpdated() method in BubbleController 1600 BubbleController.this.onEntryUpdated(entry, shouldBubbleUp); in onEntryUpdated()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/ |
H A D | HeadsUpController.java | 93 public void onEntryUpdated(NotificationEntry entry) {
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
H A D | NotificationLogger.java | 235 mExpansionStateLogger.onEntryUpdated(entry.getKey()); in NotificationLogger() 525 void onEntryUpdated(String key) { in onEntryUpdated() method in NotificationLogger.ExpansionStateLogger
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | SmartspaceDedupingCoordinator.kt | 93 override fun onEntryUpdated(entry: NotificationEntry) {
|
H A D | RemoteInputCoordinator.kt | 98 override fun onEntryUpdated(entry: NotificationEntry, fromSystem: Boolean) {
|
H A D | HeadsUpCoordinator.java | 125 public void onEntryUpdated(NotificationEntry entry) {
|
H A D | PreparationCoordinator.java | 143 public void onEntryUpdated(NotificationEntry entry) {
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/ |
H A D | ExpansionStateLoggerTest.java | 171 mLogger.onEntryUpdated(NOTIFICATION_KEY); in testOnEntryUpdated()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/legacy/ |
H A D | NotificationGroupManagerLegacy.java | 501 public void onEntryUpdated(NotificationEntry entry, StatusBarNotification oldNotification) { in onEntryUpdated() method in NotificationGroupManagerLegacy 505 onEntryUpdated(entry, oldNotification.getGroupKey(), oldNotification.isGroup(), in onEntryUpdated() 516 public void onEntryUpdated(NotificationEntry entry, String oldGroupKey, boolean oldIsGroup, in onEntryUpdated() method in NotificationGroupManagerLegacy
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
H A D | NotificationGroupAlertTransferHelperTest.java | 301 mGroupManager.onEntryUpdated(childEntry, oldNotification); in testUpdateGroupChangeDoesNotTransfer() 324 mGroupManager.onEntryUpdated(childEntry, oldNotification); in testUpdateChildToSummaryDoesNotTransfer()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
H A D | NotificationRankingManager.kt | 195 groupManager.onEntryUpdated(entry, oldGroupKey, oldIsGroup,
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/ |
H A D | NewNotifPipelineBubblesTest.java | 560 mEntryListener.onEntryUpdated(mRow); in testUpdateWhileExpanded_DoesntChangeShowInShadeAndDot() 729 mEntryListener.onEntryUpdated(mNonBubbleNotifRow.getEntry()); in testAddNotif_notBubble() 767 mEntryListener.onEntryUpdated(mRow); in testRemoveBubble_noLongerBubbleAfterUpdate()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationEntryManager.java | 686 mGroupManager.onEntryUpdated(entry, oldSbn); in updateNotificationInternal() 694 listener.onEntryUpdated(entry, fromSystem); in updateNotificationInternal()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | SmartspaceDedupingCoordinatorTest.kt | 381 collectionListener.onEntryUpdated(entry)
|
H A D | PreparationCoordinatorTest.java | 168 mCollectionListener.onEntryUpdated(mEntry); in testRebindsInflatedNotificationsOnUpdate()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationStackScrollLayoutController.java | 742 public void onEntryUpdated(NotificationEntry entry) { in attach() 743 mView.onEntryUpdated(entry); in attach() 750 mView.onEntryUpdated(entry); in attach()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | NotificationMediaManager.java | 221 public void onEntryUpdated(NotificationEntry entry) { in setupNotifPipeline()
|