Home
last modified time | relevance | path

Searched refs:showing (Results 1 – 25 of 45) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitorCallback.java84 public void onKeyguardVisibilityChanged(boolean showing) { } in onKeyguardVisibilityChanged() argument
86 public void onKeyguardVisibilityChangedRaw(boolean showing) { in onKeyguardVisibilityChangedRaw() argument
88 if (showing == mShowing in onKeyguardVisibilityChangedRaw()
90 onKeyguardVisibilityChanged(showing); in onKeyguardVisibilityChangedRaw()
92 mShowing = showing; in onKeyguardVisibilityChangedRaw()
DKeyguardStatusView.java94 public void onKeyguardVisibilityChanged(boolean showing) {
95 if (showing) {
96 if (DEBUG) Slog.v(TAG, "refresh statusview showing:" + showing);
DKeyguardDisplayManager.java199 protected boolean updateDisplays(boolean showing) { in updateDisplays() argument
201 if (showing) { in updateDisplays()
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DDozeLog.java141 public static void traceKeyguardBouncerChanged(boolean showing) { in traceKeyguardBouncerChanged() argument
143 log("bouncer " + showing); in traceKeyguardBouncerChanged()
169 public static void traceKeyguard(boolean showing) { in traceKeyguard() argument
171 log("keyguard " + showing); in traceKeyguard()
172 if (!showing) { in traceKeyguard()
338 public void onKeyguardVisibilityChanged(boolean showing) {
339 traceKeyguard(showing);
DDozeUi.java58 public void onKeyguardVisibilityChanged(boolean showing) {
59 mKeyguardShowing = showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardMonitorImpl.java96 public void notifyKeyguardState(boolean showing, boolean secure, boolean occluded) { in notifyKeyguardState() argument
97 if (mShowing == showing && mSecure == secure && mOccluded == occluded) return; in notifyKeyguardState()
98 mShowing = showing; in notifyKeyguardState()
DKeyguardMonitor.java74 default void notifyKeyguardState(boolean showing, boolean methodSecure, boolean occluded) { in notifyKeyguardState() argument
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
DKeyguardServiceDelegate.java65 boolean showing; field in KeyguardServiceDelegate.KeyguardState
84 showing = true; in reset()
149 mKeyguardState.showing = false; in bindService()
223 mKeyguardState.showing = mKeyguardService.isShowing(); in isShowing()
225 return mKeyguardState.showing; in isShowing()
418 proto.write(SHOWING, mKeyguardState.showing); in writeToProto()
429 pw.println(prefix + "showing=" + mKeyguardState.showing); in dump()
DKeyguardStateMonitor.java87 public void onShowingStateChanged(boolean showing) { in onShowingStateChanged() argument
88 mIsShowing = showing; in onShowingStateChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPanelBar.java93 public void setBouncerShowing(boolean showing) { in setBouncerShowing() argument
94 mBouncerShowing = showing; in setBouncerShowing()
95 int important = showing ? IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS in setBouncerShowing()
DStatusBarWindowController.java432 public void setKeyguardShowing(boolean showing) { in setKeyguardShowing() argument
433 mCurrentState.keyguardShowing = showing; in setKeyguardShowing()
458 public void setBouncerShowing(boolean showing) { in setBouncerShowing() argument
459 mCurrentState.bouncerShowing = showing; in setBouncerShowing()
463 public void setBackdropShowing(boolean showing) { in setBackdropShowing() argument
464 mCurrentState.backdropShowing = showing; in setBackdropShowing()
488 public void setHeadsUpShowing(boolean showing) { in setHeadsUpShowing() argument
489 mCurrentState.headsUpShowing = showing; in setHeadsUpShowing()
DRotationButtonController.java301 void onNavigationBarWindowVisibilityChange(boolean showing) { in onNavigationBarWindowVisibilityChange() argument
302 if (mIsNavigationBarShowing != showing) { in onNavigationBarWindowVisibilityChange()
303 mIsNavigationBarShowing = showing; in onNavigationBarWindowVisibilityChange()
306 if (showing && mPendingRotationSuggestion) { in onNavigationBarWindowVisibilityChange()
DStatusBarKeyguardViewManager.java775 boolean showing = mShowing; in updateStates()
781 if ((bouncerDismissible || !showing || remoteInputActive) != in updateStates()
784 if (bouncerDismissible || !showing || remoteInputActive) { in updateStates()
803 if ((showing && !occluded) != (mLastShowing && !mLastOccluded) || mFirstUpdate) { in updateStates()
804 updateMonitor.onKeyguardVisibilityChanged(showing && !occluded); in updateStates()
811 mLastShowing = showing; in updateStates()
DKeyguardLiftController.kt65 override fun onKeyguardVisibilityChanged(showing: Boolean) { in onKeyguardVisibilityChanged()
DLockIcon.java156 public void onKeyguardVisibilityChanged(boolean showing) {
597 public void onShowingLaunchAffordanceChanged(boolean showing) { in onShowingLaunchAffordanceChanged() argument
598 mShowingLaunchAffordance = showing; in onShowingLaunchAffordanceChanged()
DUnlockMethodCache.java205 public void onKeyguardVisibilityChanged(boolean showing) {
DKeyguardStatusBarView.java373 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { in setKeyguardUserSwitcherShowing() argument
374 mKeyguardUserSwitcherShowing = showing; in setKeyguardUserSwitcherShowing()
/frameworks/base/core/java/com/android/internal/policy/
DIKeyguardStateCallback.aidl19 void onShowingStateChanged(boolean showing); in onShowingStateChanged() argument
/frameworks/base/core/proto/android/view/
Denums.proto32 // optimized for showing system-provided content while the device is
36 // but is optimized for showing static system-provided content while the
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardViewMediator.java1746 private void updateActivityLockScreenState(boolean showing, boolean aodShowing) { in updateActivityLockScreenState() argument
1749 Log.d(TAG, "updateActivityLockScreenState(" + showing + ", " + aodShowing + ")"); in updateActivityLockScreenState()
1752 ActivityTaskManager.getService().setLockScreenShown(showing, aodShowing); in updateActivityLockScreenState()
2158 private void setShowingLocked(boolean showing) { in setShowingLocked() argument
2159 setShowingLocked(showing, false /* forceCallbacks */); in setShowingLocked()
2162 private void setShowingLocked(boolean showing, boolean forceCallbacks) { in setShowingLocked() argument
2164 final boolean notifyDefaultDisplayCallbacks = showing != mShowing in setShowingLocked()
2166 mShowing = showing; in setShowingLocked()
2169 notifyDefaultDisplayCallbacks(showing); in setShowingLocked()
2170 updateActivityLockScreenState(showing, aodShowing); in setShowingLocked()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DBatteryMeterView.java384 final boolean showing = mBatteryPercentView != null; in updateShowPercent()
391 if (!showing) { in updateShowPercent()
404 if (showing) { in updateShowPercent()
/frameworks/base/core/java/android/widget/
DFastScroller.java1138 final TextView showing; in transitionPreviewLayout() local
1141 showing = mPrimaryText; in transitionPreviewLayout()
1144 showing = mSecondaryText; in transitionPreviewLayout()
1159 final Animator hideShowing = animateAlpha(showing, 0f).setDuration(DURATION_CROSS_FADE); in transitionPreviewLayout()
1191 final int showingWidth = showing.getWidth(); in transitionPreviewLayout()
1194 final Animator scaleAnim = animateScaleX(showing, scale).setDuration(DURATION_RESIZE); in transitionPreviewLayout()
DListPopupWindow.java609 boolean showing = isShowing(); in setPromptView()
610 if (showing) { in setPromptView()
614 if (showing) { in setPromptView()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNotificationPanelViewTest.java158 Consumer<Boolean> listener = spy((showing) -> { }); in testAffordanceLaunchingListener()
/frameworks/base/core/java/com/android/internal/widget/
DActionBarOverlayLayout.java232 public void setShowingForActionMode(boolean showing) {
233 if (showing) {

12