/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | RemoteInputController.java | 130 boolean isActive = isRemoteInputActive(entry); in addRemoteInput() 164 boolean remoteInputActive = isRemoteInputActive(entry); in removeRemoteInput() 222 mDelegate.setRemoteInputActive(entry, isRemoteInputActive(entry)); in apply() 223 boolean remoteInputActive = isRemoteInputActive(); in apply() 234 public boolean isRemoteInputActive(NotificationEntry entry) { in isRemoteInputActive() method in RemoteInputController 242 public boolean isRemoteInputActive() { in isRemoteInputActive() method in RemoteInputController 338 pw.println(isRemoteInputActive()); // Note that this prunes the mOpen list, printed later. in dump()
|
H A D | NotificationRemoteInputManager.java | 539 if (isRemoteInputActive(entry)) { in cleanUpRemoteInputForUserRemoval() 595 && isRemoteInputActive()) { in checkRemoteInputOutside() 630 public boolean isRemoteInputActive() { in isRemoteInputActive() method in NotificationRemoteInputManager 631 return mRemoteInputController != null && mRemoteInputController.isRemoteInputActive(); in isRemoteInputActive() 634 public boolean isRemoteInputActive(NotificationEntry entry) { in isRemoteInputActive() method in NotificationRemoteInputManager 635 return mRemoteInputController != null && mRemoteInputController.isRemoteInputActive(entry); in isRemoteInputActive()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | RemoteInputControllerLogger.kt | 54 isRemoteInputActive: Boolean? = null 63 str2 = isRemoteInputActive?.toString() ?: "N/A"
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
H A D | NotificationRemoteInputManagerTest.java | 105 when(mController.isRemoteInputActive(mEntry)).thenReturn(true); in testShouldExtendLifetime_remoteInputActive() 107 assertTrue(mRemoteInputManager.isRemoteInputActive(mEntry)); in testShouldExtendLifetime_remoteInputActive()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | RemoteInputCoordinatorTest.kt | 103 `when`(remoteInputManager.isRemoteInputActive(entry1)).thenReturn(true) 130 `when`(remoteInputManager.isRemoteInputActive(entry1)).thenReturn(true)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | RemoteInputCoordinator.kt | 222 mNotificationRemoteInputManager.isRemoteInputActive(entry)
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/ |
H A D | QuickSettingsControllerBaseTest.java | 201 when(mNotificationRemoteInputManager.isRemoteInputActive()) in setup()
|
H A D | NotificationPanelViewControllerBaseTest.java | 556 when(mNotificationRemoteInputManager.isRemoteInputActive()) in setup()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarNotificationActivityStarter.java | 218 if (mRemoteInputManager.isRemoteInputActive(entry)) { in onNotificationClicked()
|
H A D | CentralSurfacesImpl.java | 1290 return !mRemoteInputManager.isRemoteInputActive(); in makeStatusBarView()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationStackScrollLayoutControllerTest.java | 494 when(mRemoteInputManager.isRemoteInputActive()).thenReturn(false); in testUpdateFooter_remoteInput()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | RemoteInputView.java | 808 if (visibility != VISIBLE && !mController.isRemoteInputActive()) { in onVisibilityChanged()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationStackScrollLayoutController.java | 744 mView.setIsRemoteInputActive(mRemoteInputManager.isRemoteInputActive()); in setUpView()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
H A D | QuickSettingsController.java | 508 return mRemoteInputManager.isRemoteInputActive() in isRemoteInputActiveWithKeyboardUp()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/ |
H A D | NavigationBar.java | 323 return !mNotificationRemoteInputManager.isRemoteInputActive();
|