Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DHeadsUpManager.java364 public boolean remoteInputActive; field in HeadsUpManager.HeadsUpEntry
370 || remoteInputActive || hasFullScreenIntent(mEntry); in isSticky()
391 if (remoteInputActive && !headsUpEntry.remoteInputActive) { in compareTo()
393 } else if (!remoteInputActive && headsUpEntry.remoteInputActive) { in compareTo()
408 remoteInputActive = false; in reset()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpManagerPhone.java242 @NonNull NotificationEntry entry, boolean remoteInputActive) { in setRemoteInputActive() argument
244 if (headsUpEntry != null && headsUpEntry.remoteInputActive != remoteInputActive) { in setRemoteInputActive()
245 headsUpEntry.remoteInputActive = remoteInputActive; in setRemoteInputActive()
246 if (remoteInputActive) { in setRemoteInputActive()
DStatusBarWindowController.java224 || ENABLE_REMOTE_INPUT && state.remoteInputActive in applyFocusableFlag()
241 || ENABLE_REMOTE_INPUT && state.remoteInputActive) { in applyForceShowNavigationFlag()
482 public void onRemoteInputActive(boolean remoteInputActive) { in onRemoteInputActive() argument
483 mCurrentState.remoteInputActive = remoteInputActive; in onRemoteInputActive()
603 boolean remoteInputActive; field in StatusBarWindowController.State
DStatusBarKeyguardViewManager.java712 boolean remoteInputActive = mRemoteInputActive; in updateStates()
714 if ((bouncerDismissible || !showing || remoteInputActive) != in updateStates()
717 if (bouncerDismissible || !showing || remoteInputActive) { in updateStates()
748 mLastRemoteInputActive = remoteInputActive; in updateStates()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DRemoteInputController.java178 boolean remoteInputActive = isRemoteInputActive(); in apply()
181 mCallbacks.get(i).onRemoteInputActive(remoteInputActive); in apply()
285 void setRemoteInputActive(NotificationEntry entry, boolean remoteInputActive); in setRemoteInputActive() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java713 boolean remoteInputActive) { in createDelegate()
714 mHeadsUpManager.setRemoteInputActive(entry, remoteInputActive); in createDelegate()