Home
last modified time | relevance | path

Searched refs:isRemoteInputActive (Results 1 – 13 of 13) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRemoteInputController.java135 if (!isRemoteInputActive(entry)) return; in removeRemoteInput()
186 mDelegate.setRemoteInputActive(entry, isRemoteInputActive(entry)); in apply()
187 boolean remoteInputActive = isRemoteInputActive(); in apply()
197 public boolean isRemoteInputActive(NotificationEntry entry) { in isRemoteInputActive() method in RemoteInputController
205 public boolean isRemoteInputActive() { in isRemoteInputActive() method in RemoteInputController
H A DNotificationRemoteInputManager.java596 if (isRemoteInputActive(entry)) { in cleanUpRemoteInputForUserRemoval()
649 && isRemoteInputActive()) { in checkRemoteInputOutside()
674 public boolean isRemoteInputActive() { in isRemoteInputActive() method in NotificationRemoteInputManager
675 return mRemoteInputController != null && mRemoteInputController.isRemoteInputActive(); in isRemoteInputActive()
678 public boolean isRemoteInputActive(NotificationEntry entry) { in isRemoteInputActive() method in NotificationRemoteInputManager
679 return mRemoteInputController != null && mRemoteInputController.isRemoteInputActive(entry); in isRemoteInputActive()
1019 return isRemoteInputActive(entry); in shouldExtendLifetime()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DNotificationRemoteInputManagerTest.java132 when(mController.isRemoteInputActive(mEntry)).thenReturn(true); in testPerformOnRemoveNotification()
141 when(mController.isRemoteInputActive(mEntry)).thenReturn(true); in testShouldExtendLifetime_remoteInputActive()
143 assertTrue(mRemoteInputManager.isRemoteInputActive(mEntry)); in testShouldExtendLifetime_remoteInputActive()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DRemoteInputCoordinatorTest.kt103 `when`(remoteInputManager.isRemoteInputActive(entry1)).thenReturn(true)
130 `when`(remoteInputManager.isRemoteInputActive(entry1)).thenReturn(true)
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DRemoteInputCoordinator.kt223 mNotificationRemoteInputManager.isRemoteInputActive(entry)
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutControllerTest.java412 when(mRemoteInputManager.isRemoteInputActive()).thenReturn(false); in testUpdateFooter_remoteInput()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarNotificationActivityStarter.java235 if (mRemoteInputManager.isRemoteInputActive(entry) in onNotificationClicked()
H A DStatusBar.java1201 return !mRemoteInputManager.isRemoteInputActive(); in makeStatusBarView()
H A DNotificationPanelViewController.java1625 && !mRemoteInputManager.isRemoteInputActive(); in isQsExpansionEnabled()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java792 && !mController.isRemoteInputActive()) { in onVisibilityChanged()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelViewControllerTest.java404 when(mNotificationRemoteInputManager.isRemoteInputActive()).thenReturn(false); in setup()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java718 mView.setIsRemoteInputActive(mRemoteInputManager.isRemoteInputActive()); in attach()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
H A DNavigationBar.java291 return !mNotificationRemoteInputManager.isRemoteInputActive();