Searched defs:showing (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardDisplayManager.java99 protected void updateDisplays(boolean showing) { argument
101 if (showing) {
H A DKeyguardUpdateMonitorCallback.java72 * @param showing Indicates if the keyguard is now visible.
74 public void onKeyguardVisibilityChanged(boolean showing) { } argument
76 public void onKeyguardVisibilityChangedRaw(boolean showing) { argument
78 if (showing == mShowing
80 onKeyguardVisibilityChanged(showing);
82 mShowing = showing;
H A DKeyguardUpdateMonitor.java1533 public void onKeyguardVisibilityChanged(boolean showing) { argument
1534 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
1535 mKeyguardIsVisible = showing;
1539 cb.onKeyguardVisibilityChangedRaw(showing);
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardStateMonitor.java87 public void onShowingStateChanged(boolean showing) { argument
88 mIsShowing = showing;
H A DKeyguardServiceDelegate.java59 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState
75 // Assume keyguard is showing and secure until we know for sure. This is here in
78 showing = true;
143 mKeyguardState.showing = false;
219 mKeyguardState.showing = mKeyguardService.isShowing();
221 return mKeyguardState.showing;
411 pw.println(prefix + "showing=" + mKeyguardState.showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardStatusBarView.java262 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { argument
263 mKeyguardUserSwitcherShowing = showing;
H A DPanelBar.java67 public void setBouncerShowing(boolean showing) { argument
68 int important = showing ? IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
H A DStatusBarWindowManager.java286 public void setKeyguardShowing(boolean showing) { argument
287 mCurrentState.keyguardShowing = showing;
312 public void setBouncerShowing(boolean showing) { argument
313 mCurrentState.bouncerShowing = showing;
317 public void setBackdropShowing(boolean showing) { argument
318 mCurrentState.backdropShowing = showing;
342 public void setHeadsUpShowing(boolean showing) { argument
343 mCurrentState.headsUpShowing = showing;
H A DScrimController.java165 public void setKeyguardShowing(boolean showing) { argument
166 mKeyguardShowing = showing;
202 public void setBouncerShowing(boolean showing) { argument
203 mBouncerShowing = showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardMonitorImpl.java102 public void notifyKeyguardState(boolean showing, boolean secure, boolean occluded) { argument
103 if (mShowing == showing && mSecure == secure && mOccluded == occluded) return;
104 mShowing = showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogMotion.java82 private void setShowing(boolean showing) { argument
83 if (showing == mShowing) return;
84 mShowing = showing;
/frameworks/base/services/core/java/com/android/server/am/
H A DKeyguardController.java83 * @return true if Keyguard is showing, not going away, and not being occluded on the given
92 * @return true if Keyguard is either showing or occluded, but not going away
99 * Update the Keyguard showing state.
101 void setKeyguardShown(boolean showing, int secondaryDisplayShowing) { argument
102 boolean showingChanged = showing != mKeyguardShowing;
106 mKeyguardShowing = showing;
110 if (showing) {
214 * @return True if we may show an activity while Keyguard is showing because we are in the
338 // The lock screen is currently showing, but is occluded by a window that can
H A DActivityManagerService.java1790 Slog.e(TAG, "App not found when showing strict mode dialog.");
2099 "Error showing notification for heavy-weight app", e);
2353 "Error showing notification for dump heap", e);
4133 // See if we should be showing the platform update setup UI.
7368 // And trigger dev.bootcomplete if we are not showing encryption progress
8127 // If the keyguard is showing or occluded, then try and dismiss it before
12628 public void setLockScreenShown(boolean showing, int secondaryDisplayShowing) { argument
12638 mKeyguardController.setKeyguardShown(showing, secondaryDisplayShowing);
12643 sendNotifyVrManagerOfKeyguardState(showing);
17377 // If we are showing aggregation
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java137 public static void traceKeyguardBouncerChanged(boolean showing) { argument
139 log("bouncer " + showing);
159 public static void traceKeyguard(boolean showing) { argument
161 log("keyguard " + showing);
162 if (!showing) {
309 public void onKeyguardVisibilityChanged(boolean showing) {
310 traceKeyguard(showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardIndicationController.java200 * Sets the indication that is shown if nothing else is showing.
437 public void onKeyguardVisibilityChanged(boolean showing) { argument
438 if (showing) {
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java229 public void setShowingForActionMode(boolean showing) { argument
230 if (showing) {
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java199 public void setShowingForActionMode(boolean showing) { argument
201 // if (showing) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java102 * it of when the keyguard is showing, and events from the keyguard view itself
110 * - is the keyguard showing?
114 * - the keyguard is showing
126 * whether the keyguard should be showing, external apps and services may request
239 // cached value of whether we are showing (need to know this to quickly
342 * Controller for showing individual "work challenge" lock screen windows inside managed profile
359 // ActivityManagerService) will not reconstruct the keyguard if it is already showing.
397 + "keyguard is showing");
412 // If system user is provisioned, we might want to lock now to avoid showing launcher
448 if (DEBUG_SIM_STATES) Log.d(TAG, "ICC_ABSENT isn't showing,"
1709 updateActivityLockScreenState(boolean showing, int secondaryDisplayShowing) argument
2074 setShowingLocked(boolean showing) argument
2078 setShowingLocked( boolean showing, int secondaryDisplayShowing, boolean forceCallbacks) argument
2091 notifyDefaultDisplayCallbacks(boolean showing) argument
[all...]

Completed in 9397 milliseconds