Searched defs:showing (Results 1 - 18 of 18) 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.java400 // wake-up (if Keyguard is not showing), so we don't need to listen until Keyguard is
1347 public void onKeyguardVisibilityChanged(boolean showing) { argument
1348 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
1349 mKeyguardIsVisible = showing;
1353 cb.onKeyguardVisibilityChangedRaw(showing);
1356 if (!showing) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardMonitor.java86 public void notifyKeyguardState(boolean showing, boolean secure) { argument
87 if (mShowing == showing && mSecure == secure) return;
88 mShowing = showing;
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardStateMonitor.java74 public void onShowingStateChanged(boolean showing) { argument
75 mIsShowing = showing;
H A DKeyguardServiceDelegate.java54 // Assume keyguard is showing and secure until we know for sure. This is here in
57 showing = true;
62 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState
134 mKeyguardState.showing = false;
190 mKeyguardState.showing = mKeyguardService.isShowing();
192 return mKeyguardState.showing;
402 pw.println(prefix + "showing=" + mKeyguardState.showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardStatusBarView.java179 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { argument
180 mKeyguardUserSwitcherShowing = showing;
H A DPanelBar.java85 public void setBouncerShowing(boolean showing) { argument
86 int important = showing ? IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
H A DStatusBarWindowManager.java220 public void setKeyguardShowing(boolean showing) { argument
221 mCurrentState.keyguardShowing = showing;
246 public void setBouncerShowing(boolean showing) { argument
247 mCurrentState.bouncerShowing = showing;
261 public void setHeadsUpShowing(boolean showing) { argument
262 mCurrentState.headsUpShowing = showing;
H A DScrimController.java103 public void setKeyguardShowing(boolean showing) { argument
104 mKeyguardShowing = showing;
127 public void setBouncerShowing(boolean showing) { argument
128 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.java128 public static void traceKeyguardBouncerChanged(boolean showing) { argument
130 log("bouncer " + showing);
145 public static void traceKeyguard(boolean showing) { argument
147 log("keyguard " + showing);
148 if (!showing) {
257 public void onKeyguardVisibilityChanged(boolean showing) {
258 traceKeyguard(showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java442 public void setShowingLegacyBackground(boolean showing) { argument
443 mShowingLegacyBackground = showing;
H A DActivatableNotificationView.java356 public void setShowingLegacyBackground(boolean showing) { argument
357 mShowingLegacyBackground = showing;
H A DExpandableNotificationRow.java63 /** Are we showing the "public" version */
517 final NotificationContentView showing = getShowingLayout();
518 if (showing != null) {
519 showing.setDark(dark, fade, delay);
968 public void setShowingLegacyBackground(boolean showing) { argument
969 super.setShowingLegacyBackground(showing);
970 mPrivateLayout.setShowingLegacyBackground(showing);
971 mPublicLayout.setShowingLegacyBackground(showing);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java228 public void setShowingForActionMode(boolean showing) { argument
229 if (showing) {
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarOverlayLayout.java195 public void setShowingForActionMode(boolean showing) { argument
197 // if (showing) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java88 * it of when the keyguard is showing, and events from the keyguard view itself
96 * - is the keyguard showing?
100 * - the keyguard is showing
112 * whether the keyguard should be showing, external apps and services may request
230 // cached value of whether we are showing (need to know this to quickly
330 // ActivityManagerService) will not reconstruct the keyguard if it is already showing.
367 + "keyguard is showing");
412 if (DEBUG_SIM_STATES) Log.d(TAG, "ICC_ABSENT isn't showing,"
428 + "showing; need to show keyguard so user can enter sim pin");
439 + "keygaurd isn't showing
1709 setShowingLocked(boolean showing) argument
[all...]

Completed in 1197 milliseconds