Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DRemoteInputController.java78 boolean isActive = isRemoteInputActive(entry); in addRemoteInput()
112 isRemoteInputActive(entry) /* isRemoteInputActiveForEntry */, in removeRemoteInput()
113 isRemoteInputActive() /* isRemoteInputActive */, in removeRemoteInput()
120 boolean remoteInputActiveForEntry = isRemoteInputActive(entry); in removeRemoteInput()
121 boolean remoteInputActive = isRemoteInputActive(); in removeRemoteInput()
192 mDelegate.setRemoteInputActive(entry, isRemoteInputActive(entry)); in apply()
193 boolean remoteInputActive = isRemoteInputActive(); in apply()
204 public boolean isRemoteInputActive(NotificationEntry entry) { in isRemoteInputActive() method in RemoteInputController
212 public boolean isRemoteInputActive() { in isRemoteInputActive() method in RemoteInputController
308 pw.println(isRemoteInputActive()); // Note that this prunes the mOpen list, printed later. in dump()
DNotificationRemoteInputManager.java547 if (isRemoteInputActive(entry)) { in cleanUpRemoteInputForUserRemoval()
604 && isRemoteInputActive()) { in checkRemoteInputOutside()
639 public boolean isRemoteInputActive() { in isRemoteInputActive() method in NotificationRemoteInputManager
640 return mRemoteInputController != null && mRemoteInputController.isRemoteInputActive(); in isRemoteInputActive()
643 public boolean isRemoteInputActive(NotificationEntry entry) { in isRemoteInputActive() method in NotificationRemoteInputManager
644 return mRemoteInputController != null && mRemoteInputController.isRemoteInputActive(entry); in isRemoteInputActive()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/domain/interactor/
DRemoteInputInteractorTest.kt47 val active by collectLastValue(underTest.isRemoteInputActive) in isRemoteInputActive_true()
49 fakeRemoteInputRepository.isRemoteInputActive.value = true in isRemoteInputActive_true()
58 val active by collectLastValue(underTest.isRemoteInputActive) in isRemoteInputActive_false()
60 fakeRemoteInputRepository.isRemoteInputActive.value = false in isRemoteInputActive_false()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/domain/interactor/
DRemoteInputInteractor.kt31 val isRemoteInputActive: Flow<Boolean> = remoteInputRepository.isRemoteInputActive constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/data/repository/
DRemoteInputRepository.kt35 val isRemoteInputActive: Flow<Boolean> constant
44 override val isRemoteInputActive: Flow<Boolean> = conflatedCallbackFlow { in <lambda>() constant in com.android.systemui.statusbar.data.repository.RemoteInputRepositoryImpl
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DRemoteInputControllerLogger.kt62 isRemoteInputActive: Boolean, in logRemoveRemoteInput()
76 bool4 = isRemoteInputActive in logRemoveRemoteInput()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/data/repository/
DFakeRemoteInputRepository.kt22 override val isRemoteInputActive = MutableStateFlow(false) constant in com.android.systemui.statusbar.data.repository.FakeRemoteInputRepository
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/
DNotificationListViewModel.kt154 remoteInputInteractor.isRemoteInputActive in <lambda>()
160 isRemoteInputActive -> in <lambda>() method
176 isRemoteInputActive -> VisibilityChange.DISAPPEAR_WITH_ANIMATION in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationRemoteInputManagerTest.java107 when(mController.isRemoteInputActive(mEntry)).thenReturn(true); in testShouldExtendLifetime_remoteInputActive()
109 assertTrue(mRemoteInputManager.isRemoteInputActive(mEntry)); in testShouldExtendLifetime_remoteInputActive()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DRemoteInputCoordinatorTest.kt114 `when`(remoteInputManager.isRemoteInputActive(entry1)).thenReturn(true) in testRemoteInputActive()
145 `when`(remoteInputManager.isRemoteInputActive(entry1)).thenReturn(true) in testNotificationWithRemoteInputActiveIsRemovedOnCollapse()
164 `when`(remoteInputManager.isRemoteInputActive(entry1)).thenReturn(true) in testOnlyRemoteInputActiveLifetimeExtenderExtends()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/data/repository/
DRemoteInputRepositoryImplTest.kt59 val active by collectLastValue(underTest.isRemoteInputActive) in isRemoteInputActive_updatesOnChange()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DRemoteInputCoordinator.kt272 mNotificationRemoteInputManager.isRemoteInputActive(entry)
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DQuickSettingsControllerImplBaseTest.java263 when(mNotificationRemoteInputManager.isRemoteInputActive()) in setup()
DNotificationPanelViewControllerBaseTest.java658 when(mNotificationRemoteInputManager.isRemoteInputActive()) in setup()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/
DNotificationListViewModelTest.kt436 fakeRemoteInputRepository.isRemoteInputActive.value = true in shouldIncludeFooterView_falseWhenRemoteInputActive()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarter.java267 if (mRemoteInputManager.isRemoteInputActive(entry)) { in performActionAfterKeyguardDismissed()
DCentralSurfacesImpl.java1220 return !mRemoteInputManager.isRemoteInputActive(); in makeStatusBarView()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutControllerTest.java748 when(mRemoteInputManager.isRemoteInputActive()).thenReturn(false); in testUpdateFooter_remoteInput()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java757 if (visibility != VISIBLE && !mController.isRemoteInputActive()) { in onVisibilityChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutController.java821 mView.setIsRemoteInputActive(mRemoteInputManager.isRemoteInputActive()); in setUpView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
DNavigationBar.java329 return !mNotificationRemoteInputManager.isRemoteInputActive();
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DQuickSettingsControllerImpl.java504 return mRemoteInputManager.isRemoteInputActive() in isRemoteInputActiveWithKeyboardUp()