Home
last modified time | relevance | path

Searched refs:mBarService (Results 1 – 11 of 11) 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/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.java133 protected IStatusBarService mBarService; field in NotificationRemoteInputManager
296 mBarService = IStatusBarService.Stub.asInterface( in NotificationRemoteInputManager()
351 mBarService.onNotificationDirectReplied(entry.getSbn().getKey()); in setUpWithCallback()
356 mBarService.onNotificationSmartReplySent( in setUpWithCallback()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationLogger.java78 protected IStatusBarService mBarService; field in NotificationLogger
212 mBarService = IStatusBarService.Stub.asInterface( in NotificationLogger()
296 mBarService.onNotificationError( in logNotificationError()
320 mBarService.onNotificationVisibilityChanged(newlyVisibleAr, noLongerVisibleAr); in logNotificationVisibilityChanges()
473 IStatusBarService mBarService; field in NotificationLogger.ExpansionStateLogger
478 mBarService = in ExpansionStateLogger()
557 mBarService.onNotificationExpansionChanged(key, stateToBeLogged.mIsUserAction, in maybeNotifyOnNotificationExpansionChanged()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarTest.java193 @Mock private IStatusBarService mBarService; field in StatusBarTest
467 mStatusBar.mBarService = mBarService; in setup()
691 verify(mBarService, times(1)).onPanelHidden(); in testLogHidden()
692 verify(mBarService, never()).onPanelRevealed(anyBoolean(), anyInt()); in testLogHidden()
709 verify(mBarService, never()).onPanelHidden(); in testPanelOpenForHeadsUp()
710 verify(mBarService, times(1)).onPanelRevealed(false, 1); in testPanelOpenForHeadsUp()
728 verify(mBarService, never()).onPanelHidden(); in testPanelOpenAndClear()
729 verify(mBarService, times(1)).onPanelRevealed(true, 5); in testPanelOpenAndClear()
746 verify(mBarService, never()).onPanelHidden(); in testPanelOpenAndNoClear()
747 verify(mBarService, times(1)).onPanelRevealed(false, 5); in testPanelOpenAndNoClear()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationPresenter.java124 private final IStatusBarService mBarService; field in StatusBarNotificationPresenter
167 mBarService = IStatusBarService.Stub.asInterface( in StatusBarNotificationPresenter()
453 mBarService.onNotificationSettingsViewed(key);
DStatusBar.java955 mBarService = IStatusBarService.Stub.asInterface( in start()
970 result = mBarService.registerStatusBar(mCommandQueue); in start()
3235 mBarService.onPanelRevealed(clearNotificationEffects,
3244 mBarService.onPanelHidden();
4529 protected IStatusBarService mBarService;
4851 mBarService.clearNotificationEffects();
/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
DBubblesManager.java113 private final IStatusBarService mBarService; field in BubblesManager
191 mBarService = statusBarService == null in BubblesManager()
695 mBarService.onNotificationBubbleChanged(entry.getKey(), true, flags);
726 mBarService.onNotificationBubbleChanged(entry.getKey(), shouldBubble, flags);
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleController.java135 private final IStatusBarService mBarService; field in BubbleController
245 mBarService = statusBarService == null in BubbleController()
411 mBarService.hideCurrentInputMethodForBubbles(); in hideCurrentInputMethod()
505 mBarService.onBubbleNotificationSuppressionChanged(bubble.getKey(), in onBubbleNotificationSuppressionChanged()
1059 mBarService.onNotificationBubbleChanged(entry.getKey(), isBubble, flags); in setIsBubble()