Home
last modified time | relevance | path

Searched refs:remoteInputActive (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputQuickSettingsDisabler.kt38 private var remoteInputActive = false regex
51 if (remoteInputActive &&
61 if (remoteInputActive != active) {
62 remoteInputActive = active
H A DHeadsUpManager.java410 public boolean remoteInputActive; field in HeadsUpManager.HeadsUpEntry
416 || remoteInputActive || hasFullScreenIntent(mEntry); in isSticky()
446 if (remoteInputActive && !headsUpEntry.remoteInputActive) { in compareTo()
448 } else if (!remoteInputActive && headsUpEntry.remoteInputActive) { in compareTo()
463 remoteInputActive = false; in reset()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DHeadsUpManagerPhone.java268 @NonNull NotificationEntry entry, boolean remoteInputActive) { in setRemoteInputActive() argument
270 if (headsUpEntry != null && headsUpEntry.remoteInputActive != remoteInputActive) { in setRemoteInputActive()
271 headsUpEntry.remoteInputActive = remoteInputActive; in setRemoteInputActive()
272 if (remoteInputActive) { in setRemoteInputActive()
H A DStatusBarKeyguardViewManager.java983 boolean remoteInputActive = mRemoteInputActive; in updateStates()
985 if ((bouncerDismissible || !showing || remoteInputActive) != in updateStates()
988 if (bouncerDismissible || !showing || remoteInputActive) { in updateStates()
1023 mLastRemoteInputActive = remoteInputActive; in updateStates()
H A DNotificationShadeWindowControllerImpl.java649 public void onRemoteInputActive(boolean remoteInputActive) { in onRemoteInputActive() argument
650 mCurrentState.mRemoteInputActive = remoteInputActive; in onRemoteInputActive()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRemoteInputController.java187 boolean remoteInputActive = isRemoteInputActive(); in apply()
190 mCallbacks.get(i).onRemoteInputActive(remoteInputActive); in apply()
309 void setRemoteInputActive(NotificationEntry entry, boolean remoteInputActive); in setRemoteInputActive() argument
H A DNotificationShadeWindowController.java136 default void onRemoteInputActive(boolean remoteInputActive) {} in onRemoteInputActive() argument
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DHeadsUpManagerTest.java115 activeRemoteInput.remoteInputActive = true; in testAlertEntryCompareTo_ongoingCallLessThanActiveRemoteInput()
137 activeRemoteInput.remoteInputActive = true; in testAlertEntryCompareTo_incomingCallLessThanActiveRemoteInput()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java1294 boolean remoteInputActive) { in createDelegate()
1295 mHeadsUpManager.setRemoteInputActive(entry, remoteInputActive); in createDelegate()