Home
last modified time | relevance | path

Searched refs:mBarService (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/
DExpansionStateLoggerTest.java54 private IStatusBarService mBarService; field in ExpansionStateLoggerTest
61 mLogger.mBarService = mBarService; in setUp()
71 verify(mBarService, Mockito.never()).onNotificationExpansionChanged( in testVisible()
81 verify(mBarService, Mockito.never()).onNotificationExpansionChanged( in testExpanded()
94 verify(mBarService, Mockito.never()).onNotificationExpansionChanged( in testVisibleAndNotExpanded()
107 verify(mBarService).onNotificationExpansionChanged( in testVisibleAndExpanded()
122 verify(mBarService).onNotificationExpansionChanged( in testExpandedAndVisible_expandedBeforeVisible()
138 verify(mBarService).onNotificationExpansionChanged( in testExpandedAndVisible_visibleBeforeExpanded()
155 verify(mBarService).onNotificationExpansionChanged( in testExpandedAndVisible_logOnceOnly()
168 verify(mBarService).onNotificationExpansionChanged( in testOnEntryUpdated()
[all …]
DNotificationLoggerTest.java79 @Mock private IStatusBarService mBarService; field in NotificationLoggerTest
112 mEntryManager, mock(StatusBarStateControllerImpl.class), mBarService, in setUp()
135 ).when(mBarService).onNotificationVisibilityChanged(any(NotificationVisibility[].class), in testOnChildLocationsChangedReportsVisibilityChanged()
149 Mockito.reset(mBarService); in testOnChildLocationsChangedReportsVisibilityChanged()
154 verify(mBarService, never()).onNotificationVisibilityChanged(any(), any()); in testOnChildLocationsChangedReportsVisibilityChanged()
165 Mockito.reset(mBarService); in testStoppingNotificationLoggingReportsCurrentNotifications()
173 verify(mBarService, times(1)).onNotificationVisibilityChanged(any(), any()); in testStoppingNotificationLoggingReportsCurrentNotifications()
253 mBarService = barService; in TestableNotificationLogger()
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
DGlobalActionsComponent.java46 private IStatusBarService mBarService; field in GlobalActionsComponent
63 mBarService = IStatusBarService.Stub.asInterface( in start()
95 mBarService.onGlobalActionsShown(); in onGlobalActionsShown()
104 mBarService.onGlobalActionsHidden(); in onGlobalActionsHidden()
112 mBarService.shutdown(); in shutdown()
120 mBarService.reboot(safeMode); in reboot()
/frameworks/base/packages/CarSystemUI/tests/src/com/android/systemui/car/notification/
DNotificationVisibilityLoggerTest.java70 private IStatusBarService mBarService; field in NotificationVisibilityLoggerTest
93 mUiBgExecutor, mBarService, mNotificationDataManager); in setUp()
101 verify(mBarService).onNotificationVisibilityChanged( in log_notifiesStatusBarService()
115 verify(mBarService).onNotificationVisibilityChanged( in log_isVisibleIsTrue_notifiesOfNewlyVisibleItems()
129 reset(mBarService); in log_isVisibleIsFalse_notifiesOfPreviouslyVisibleItems()
134 verify(mBarService).onNotificationVisibilityChanged( in log_isVisibleIsFalse_notifiesOfPreviouslyVisibleItems()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DSmartReplyController.java36 private final IStatusBarService mBarService; field in SmartReplyController
48 mBarService = statusBarService; in SmartReplyController()
65 mBarService.onNotificationSmartReplySent(entry.getSbn().getKey(), replyIndex, reply, in smartReplySent()
102 mBarService.onNotificationSmartSuggestionsAdded(entry.getSbn().getKey(), replyCount, in smartSuggestionsAdded()
DNotificationRemoteInputManager.java132 protected IStatusBarService mBarService; field in NotificationRemoteInputManager
285 mBarService = IStatusBarService.Stub.asInterface( in NotificationRemoteInputManager()
340 mBarService.onNotificationDirectReplied(entry.getSbn().getKey()); in setUpWithCallback()
345 mBarService.onNotificationSmartReplySent( in setUpWithCallback()
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/car/notification/
DNotificationVisibilityLogger.java49 private final IStatusBarService mBarService; field in NotificationVisibilityLogger
93 mBarService = barService; in NotificationVisibilityLogger()
118 mBarService.onNotificationVisibilityChanged( in onNotificationVisibilityChanged()
DNotificationPanelViewController.java73 private final IStatusBarService mBarService; field in NotificationPanelViewController
130 mBarService = barService; in NotificationPanelViewController()
418 mBarService.onPanelRevealed(clearNotificationEffects, in onPanelVisible()
421 mBarService.onPanelHidden(); in onPanelVisible()
452 mBarService.clearNotificationEffects(); in clearNotificationEffects()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationLogger.java81 protected IStatusBarService mBarService; field in NotificationLogger
215 mBarService = IStatusBarService.Stub.asInterface( in NotificationLogger()
315 mBarService.onNotificationClear(pkg, tag, id, userId, notification.getKey(), in logNotificationClear()
330 mBarService.onNotificationError( in logNotificationError()
354 mBarService.onNotificationVisibilityChanged(newlyVisibleAr, noLongerVisibleAr); in logNotificationVisibilityChanges()
507 IStatusBarService mBarService; field in NotificationLogger.ExpansionStateLogger
512 mBarService = in ExpansionStateLogger()
591 mBarService.onNotificationExpansionChanged(key, stateToBeLogged.mIsUserAction, in maybeNotifyOnNotificationExpansionChanged()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarTest.java177 @Mock private IStatusBarService mBarService; field in StatusBarTest
428 mStatusBar.mBarService = mBarService; in setup()
652 verify(mBarService, times(1)).onPanelHidden(); in testLogHidden()
653 verify(mBarService, never()).onPanelRevealed(anyBoolean(), anyInt()); in testLogHidden()
670 verify(mBarService, never()).onPanelHidden(); in testPanelOpenForHeadsUp()
671 verify(mBarService, times(1)).onPanelRevealed(false, 1); in testPanelOpenForHeadsUp()
689 verify(mBarService, never()).onPanelHidden(); in testPanelOpenAndClear()
690 verify(mBarService, times(1)).onPanelRevealed(true, 5); in testPanelOpenAndClear()
707 verify(mBarService, never()).onPanelHidden(); in testPanelOpenAndNoClear()
708 verify(mBarService, times(1)).onPanelRevealed(false, 5); in testPanelOpenAndNoClear()
/frameworks/base/packages/CarSystemUI/tests/src/com/android/systemui/car/navigationbar/
DCarNavigationBarTest.java94 private IStatusBarService mBarService; field in CarNavigationBarTest
134 when(mBarService.registerStatusBar(any())).thenReturn(mBarResult); in setUp()
142 mBarService, () -> mKeyguardStateController, () -> mIconPolicy, in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java198 private IStatusBarService mBarService; field in BubbleController
396 mBarService.onBubbleNotificationSuppressionChanged(bubble.getKey(), in BubbleController()
441 mBarService = statusBarService == null in BubbleController()
518 mBarService.hideCurrentInputMethodForBubbles(); in hideCurrentInputMethod()
1062 mBarService.onNotificationBubbleChanged(entry.getKey(), true, flags); in onUserChangedImportance()
1151 mBarService.onNotificationBubbleChanged(entry.getKey(), shouldBubble, flags); in onUserChangedBubble()
1266 mBarService.onNotificationBubbleChanged(entry.getKey(), isBubble, flags); in setIsBubble()
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/car/navigationbar/
DCarNavigationBar.java88 private final IStatusBarService mBarService; field in CarNavigationBar
155 mBarService = barService; in CarNavigationBar()
175 result = mBarService.registerStatusBar(mCommandQueue); in start()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationPresenter.java123 private final IStatusBarService mBarService; field in StatusBarNotificationPresenter
168 mBarService = IStatusBarService.Stub.asInterface( in StatusBarNotificationPresenter()
468 mBarService.onNotificationSettingsViewed(key);
DStatusBar.java846 mBarService = IStatusBarService.Stub.asInterface( in start()
858 result = mBarService.registerStatusBar(mCommandQueue); in start()
2909 mBarService.onPanelRevealed(false, notificationLoad); in handlePeekToExpandTransistion()
2933 mBarService.onPanelRevealed(clearNotificationEffects, in handleVisibleToUserChangedImpl()
2942 mBarService.onPanelHidden(); in handleVisibleToUserChangedImpl()
4020 protected IStatusBarService mBarService;
4283 mBarService.clearNotificationEffects(); in clearNotificationEffects()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java511 private final IStatusBarService mBarService = IStatusBarService.Stub.asInterface( field in NotificationStackScrollLayout
6639 mBarService.onClearAllNotifications(mLockscreenUserManager.getCurrentUserId());