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

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardDisplayManager.java92 protected void updateDisplays(boolean showing) { argument
93 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.java423 // wake-up (if Keyguard is not showing), so we don't need to listen until Keyguard is
1462 public void onKeyguardVisibilityChanged(boolean showing) { argument
1463 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
1464 mKeyguardIsVisible = showing;
1468 cb.onKeyguardVisibilityChangedRaw(showing);
1471 if (!showing) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationCustomViewWrapper.java135 public void setShowingLegacyBackground(boolean showing) { argument
136 super.setShowingLegacyBackground(showing);
137 mShowingLegacyBackground = showing;
H A DNotificationViewWrapper.java161 public void setShowingLegacyBackground(boolean showing) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardMonitor.java107 public void notifyKeyguardState(boolean showing, boolean secure, boolean occluded) { argument
108 if (mShowing == showing && mSecure == secure && mOccluded == occluded) return;
109 mShowing = showing;
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardStateMonitor.java87 public void onShowingStateChanged(boolean showing) { argument
88 mIsShowing = showing;
89 mOnShowingStateChangedCallback.onShowingStateChanged(showing);
131 void onShowingStateChanged(boolean showing); argument
H A DKeyguardServiceDelegate.java57 // Assume keyguard is showing and secure until we know for sure. This is here in
60 showing = true;
66 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState
141 mKeyguardState.showing = false;
201 mKeyguardState.showing = mKeyguardService.isShowing();
203 return mKeyguardState.showing;
433 pw.println(prefix + "showing=" + mKeyguardState.showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardStatusBarView.java251 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { argument
252 mKeyguardUserSwitcherShowing = showing;
H A DPanelBar.java63 public void setBouncerShowing(boolean showing) { argument
64 int important = showing ? IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
H A DStatusBarWindowManager.java255 public void setKeyguardShowing(boolean showing) { argument
256 mCurrentState.keyguardShowing = showing;
281 public void setBouncerShowing(boolean showing) { argument
282 mCurrentState.bouncerShowing = showing;
286 public void setBackdropShowing(boolean showing) { argument
287 mCurrentState.backdropShowing = showing;
306 public void setHeadsUpShowing(boolean showing) { argument
307 mCurrentState.headsUpShowing = showing;
H A DScrimController.java111 public void setKeyguardShowing(boolean showing) { argument
112 mKeyguardShowing = showing;
158 public void setBouncerShowing(boolean showing) { argument
159 mBouncerShowing = showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogMotion.java81 private void setShowing(boolean showing) { argument
82 if (showing == mShowing) return;
83 mShowing = showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java131 public static void traceKeyguardBouncerChanged(boolean showing) { argument
133 log("bouncer " + showing);
148 public static void traceKeyguard(boolean showing) { argument
150 log("keyguard " + showing);
151 if (!showing) {
261 public void onKeyguardVisibilityChanged(boolean showing) {
262 traceKeyguard(showing);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java228 public void setShowingForActionMode(boolean showing) { argument
229 if (showing) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DActivatableNotificationView.java440 public void setShowingLegacyBackground(boolean showing) { argument
441 mShowingLegacyBackground = showing;
H A DNotificationContentView.java897 public void setShowingLegacyBackground(boolean showing) { argument
898 mShowingLegacyBackground = showing;
H A DExpandableNotificationRow.java86 /** Are we showing the "public" version */
935 // Don't translate if guts are showing.
1044 final NotificationContentView showing = getShowingLayout();
1045 if (showing != null) {
1046 showing.setDark(dark, fade, delay);
1544 public void setShowingLegacyBackground(boolean showing) { argument
1545 super.setShowingLegacyBackground(showing);
1546 mPrivateLayout.setShowingLegacyBackground(showing);
1547 mPublicLayout.setShowingLegacyBackground(showing);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java197 public void setShowingForActionMode(boolean showing) { argument
199 // if (showing) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java94 * it of when the keyguard is showing, and events from the keyguard view itself
102 * - is the keyguard showing?
106 * - the keyguard is showing
118 * whether the keyguard should be showing, external apps and services may request
238 // cached value of whether we are showing (need to know this to quickly
347 // ActivityManagerService) will not reconstruct the keyguard if it is already showing.
384 + "keyguard is showing");
399 // If system user is provisioned, we might want to lock now to avoid showing launcher
435 if (DEBUG_SIM_STATES) Log.d(TAG, "ICC_ABSENT isn't showing,"
451 + "showing; nee
1989 setShowingLocked(boolean showing) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java1530 final boolean showing = data.readInt() != 0;
1532 setLockScreenShown(showing, occluded);
4983 public void setLockScreenShown(boolean showing, boolean occluded) throws RemoteException argument
4988 data.writeInt(showing ? 1 : 0);
H A DIActivityManager.java334 public void setLockScreenShown(boolean showing, boolean occluded) throws RemoteException; argument
665 * Lets activity manager know whether the calling process is currently showing "top-level" UI
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java610 /** The window that is currently showing "over" the keyguard. If there is an app window
3730 // don't launch home if keyguard showing
4078 // For purposes of positioning and showing the nav bar, if we have
5017 // If the lockscreen was showing when the dream started then wait
5090 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
5170 // If we are not currently showing a dream then remember the current
5172 // started while the lockscreen was showing and remember this state
5173 // while the dream is showing.
5351 boolean showing = mKeyguardDelegate.isShowing();
5352 if (wasOccluded && !isOccluded && showing) {
5374 onKeyguardShowingStateChanged(boolean showing) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java1623 Slog.e(TAG, "App not found when showing strict mode dialog.");
1921 "Error showing notification for heavy-weight app", e);
2254 "Error showing notification for dump heap", e);
3990 // See if we should be showing the platform update setup UI.
6843 // And trigger dev.bootcomplete if we are not showing encryption progress
11796 public void setLockScreenShown(boolean showing, boolean occluded) { argument
11806 if (DEBUG_LOCKSCREEN) logLockScreen(" showing=" + showing + " occluded=" + occluded);
11807 mLockScreenShown = (showing && !occluded) ? LOCK_SCREEN_SHOWN : LOCK_SCREEN_HIDDEN;
11808 if (showing
[all...]

Completed in 432 milliseconds