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.java368 public boolean remoteInputActive; field in HeadsUpManager.HeadsUpEntry
374 || remoteInputActive || hasFullScreenIntent(mEntry); in isSticky()
395 if (remoteInputActive && !headsUpEntry.remoteInputActive) { in compareTo()
397 } else if (!remoteInputActive && headsUpEntry.remoteInputActive) { in compareTo()
412 remoteInputActive = false; in reset()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpManagerPhone.java292 @NonNull NotificationEntry entry, boolean remoteInputActive) { in setRemoteInputActive() argument
294 if (headsUpEntry != null && headsUpEntry.remoteInputActive != remoteInputActive) { in setRemoteInputActive()
295 headsUpEntry.remoteInputActive = remoteInputActive; in setRemoteInputActive()
296 if (remoteInputActive) { in setRemoteInputActive()
DStatusBarWindowController.java268 || ENABLE_REMOTE_INPUT && state.remoteInputActive in applyFocusableFlag()
285 || ENABLE_REMOTE_INPUT && state.remoteInputActive) { in applyForceShowNavigationFlag()
527 public void onRemoteInputActive(boolean remoteInputActive) { in onRemoteInputActive() argument
528 mCurrentState.remoteInputActive = remoteInputActive; in onRemoteInputActive()
682 boolean remoteInputActive; field in StatusBarWindowController.State
DStatusBarKeyguardViewManager.java779 boolean remoteInputActive = mRemoteInputActive; in updateStates()
781 if ((bouncerDismissible || !showing || remoteInputActive) != in updateStates()
784 if (bouncerDismissible || !showing || remoteInputActive) { in updateStates()
815 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.java725 boolean remoteInputActive) { in createDelegate()
726 mHeadsUpManager.setRemoteInputActive(entry, remoteInputActive); in createDelegate()