Searched defs:showing (Results 1 - 23 of 23) 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.java403 // wake-up (if Keyguard is not showing), so we don't need to listen until Keyguard is
1373 public void onKeyguardVisibilityChanged(boolean showing) { argument
1374 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
1375 mKeyguardIsVisible = showing;
1379 cb.onKeyguardVisibilityChangedRaw(showing);
1382 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.java102 public void notifyKeyguardState(boolean showing, boolean secure) { argument
103 if (mShowing == showing && mSecure == secure) return;
104 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.java55 // Assume keyguard is showing and secure until we know for sure. This is here in
58 showing = true;
63 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState
136 mKeyguardState.showing = false;
192 mKeyguardState.showing = mKeyguardService.isShowing();
194 return mKeyguardState.showing;
409 pw.println(prefix + "showing=" + mKeyguardState.showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardStatusBarView.java228 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { argument
229 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.java227 public void setKeyguardShowing(boolean showing) { argument
228 mCurrentState.keyguardShowing = showing;
253 public void setBouncerShowing(boolean showing) { argument
254 mCurrentState.bouncerShowing = showing;
258 public void setBackdropShowing(boolean showing) { argument
259 mCurrentState.backdropShowing = showing;
278 public void setHeadsUpShowing(boolean showing) { argument
279 mCurrentState.headsUpShowing = showing;
H A DScrimController.java105 public void setKeyguardShowing(boolean showing) { argument
106 mKeyguardShowing = showing;
145 public void setBouncerShowing(boolean showing) { argument
146 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/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.java437 public void setShowingLegacyBackground(boolean showing) { argument
438 mShowingLegacyBackground = showing;
H A DNotificationContentView.java889 public void setShowingLegacyBackground(boolean showing) { argument
890 mShowingLegacyBackground = showing;
H A DExpandableNotificationRow.java86 /** Are we showing the "public" version */
921 // Don't translate if guts are showing.
1030 final NotificationContentView showing = getShowingLayout();
1031 if (showing != null) {
1032 showing.setDark(dark, fade, delay);
1499 public void setShowingLegacyBackground(boolean showing) { argument
1500 super.setShowingLegacyBackground(showing);
1501 mPrivateLayout.setShowingLegacyBackground(showing);
1502 mPublicLayout.setShowingLegacyBackground(showing);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java193 public void setShowingForActionMode(boolean showing) { argument
195 // if (showing) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java96 * it of when the keyguard is showing, and events from the keyguard view itself
104 * - is the keyguard showing?
108 * - the keyguard is showing
120 * whether the keyguard should be showing, external apps and services may request
240 // cached value of whether we are showing (need to know this to quickly
349 // ActivityManagerService) will not reconstruct the keyguard if it is already showing.
386 + "keyguard is showing");
401 // If system user is provisioned, we might want to lock now to avoid showing launcher
438 if (DEBUG_SIM_STATES) Log.d(TAG, "ICC_ABSENT isn't showing,"
454 + "showing; nee
1892 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);
4953 public void setLockScreenShown(boolean showing, boolean occluded) throws RemoteException argument
4958 data.writeInt(showing ? 1 : 0);
H A DIActivityManager.java334 public void setLockScreenShown(boolean showing, boolean occluded) throws RemoteException; argument
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java1606 Slog.e(TAG, "App not found when showing strict mode dialog.");
1904 "Error showing notification for heavy-weight app", e);
2237 "Error showing notification for dump heap", e);
3927 // See if we should be showing the platform update setup UI.
6777 // And trigger dev.bootcomplete if we are not showing encryption progress
11724 public void setLockScreenShown(boolean showing, boolean occluded) { argument
11734 if (DEBUG_LOCKSCREEN) logLockScreen(" showing=" + showing + " occluded=" + occluded);
11735 mLockScreenShown = (showing && !occluded) ? LOCK_SCREEN_SHOWN : LOCK_SCREEN_HIDDEN;
11736 if (showing
[all...]

Completed in 2417 milliseconds