Searched refs:showing (Results 1 - 25 of 33) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/policy/
H A DIKeyguardStateCallback.aidl19 void onShowingStateChanged(boolean showing);
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardUpdateMonitorCallback.java73 * @param showing Indicates if the keyguard is now visible.
75 public void onKeyguardVisibilityChanged(boolean showing) { } argument
77 public void onKeyguardVisibilityChangedRaw(boolean showing) { argument
79 if (showing == mShowing
81 onKeyguardVisibilityChanged(showing);
83 mShowing = showing;
H A DKeyguardDisplayManager.java99 protected void updateDisplays(boolean showing) { argument
101 if (showing) {
H A DKeyguardStatusView.java89 public void onKeyguardVisibilityChanged(boolean showing) {
90 if (showing) {
91 if (DEBUG) Slog.v(TAG, "refresh statusview showing:" + showing);
H A DKeyguardUpdateMonitor.java1597 public void onKeyguardVisibilityChanged(boolean showing) { argument
1599 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
1600 mKeyguardIsVisible = showing;
1604 cb.onKeyguardVisibilityChangedRaw(showing);
/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);
H A DDozeUi.java58 public void onKeyguardVisibilityChanged(boolean showing) {
59 mKeyguardShowing = 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/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardStateMonitor.java94 public void onShowingStateChanged(boolean showing) { argument
95 mIsShowing = showing;
99 mKeystoreService.onKeyguardVisibilityChanged(showing, mCurrentUserId);
H A DKeyguardServiceDelegate.java66 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState
82 // Assume keyguard is showing and secure until we know for sure. This is here in
85 showing = true;
150 mKeyguardState.showing = false;
227 mKeyguardState.showing = mKeyguardService.isShowing();
229 return mKeyguardState.showing;
422 proto.write(SHOWING, mKeyguardState.showing);
433 pw.println(prefix + "showing=" + mKeyguardState.showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelBar.java69 public void setBouncerShowing(boolean showing) { argument
70 mBouncerShowing = showing;
71 int important = showing ? IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
H A DStatusBarWindowManager.java297 public void setKeyguardShowing(boolean showing) { argument
298 mCurrentState.keyguardShowing = showing;
323 public void setBouncerShowing(boolean showing) { argument
324 mCurrentState.bouncerShowing = showing;
328 public void setBackdropShowing(boolean showing) { argument
329 mCurrentState.backdropShowing = showing;
353 public void setHeadsUpShowing(boolean showing) { argument
354 mCurrentState.headsUpShowing = showing;
H A DStatusBarKeyguardViewManager.java52 * Manages creating, showing, hiding and resetting the keyguard within the status bar. Calls back
62 // Delay for showing the navigation bar when the bouncer appears. This should be kept in sync
205 // The keyguard might be showing (already). So we need to hide it.
528 * @return Whether the keyguard is showing
579 boolean showing = mShowing;
585 if ((bouncerDismissible || !showing || remoteInputActive) !=
588 if (bouncerDismissible || !showing || remoteInputActive) {
607 if ((showing && !occluded) != (mLastShowing && !mLastOccluded) || mFirstUpdate) {
608 updateMonitor.onKeyguardVisibilityChanged(showing && !occluded);
615 mLastShowing = showing;
[all...]
H A DUnlockMethodCache.java164 public void onKeyguardVisibilityChanged(boolean showing) {
H A DKeyguardStatusBarView.java364 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { argument
365 mKeyguardUserSwitcherShowing = showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DBatteryMeterView.java261 final boolean showing = mBatteryPercentView != null;
264 if (!showing) {
274 if (showing) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java97 * it of when the keyguard is showing, and events from the keyguard view itself
105 * - is the keyguard showing?
109 * - the keyguard is showing
121 * whether the keyguard should be showing, external apps and services may request
236 // 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
360 // ActivityManagerService) will not reconstruct the keyguard if it is already showing.
403 + "keyguard is showing");
418 // If system user is provisioned, we might want to lock now to avoid showing launcher
454 if (DEBUG_SIM_STATES) Log.d(TAG, "ICC_ABSENT isn't showing,"
1748 updateActivityLockScreenState(boolean showing, boolean aodShowing, int secondaryDisplayShowing) argument
2118 setShowingLocked(boolean showing, boolean aodShowing) argument
2123 setShowingLocked(boolean showing, boolean aodShowing, int secondaryDisplayShowing, boolean forceCallbacks) argument
2138 notifyDefaultDisplayCallbacks(boolean showing) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DFastScroller.java71 /** Minimum number of pages to justify showing a fast scroll thumb. */
74 /** Scroll thumb and preview not showing. */
154 /** Whether the primary text is showing. */
184 * <li>{@link #STATE_VISIBLE}, showing track and thumb
185 * <li>{@link #STATE_DRAGGING}, visible and showing preview
1125 final TextView showing;
1128 showing = mPrimaryText;
1131 showing = mSecondaryText;
1146 final Animator hideShowing = animateAlpha(showing, 0f).setDuration(DURATION_CROSS_FADE);
1161 // The current preview size is unaffected by hidden or showing
[all...]
H A DListPopupWindow.java590 boolean showing = isShowing();
591 if (showing) {
595 if (showing) {
608 * Show the popup list. If the list is already showing, this method
746 * <p>If the popup is showing, calling this method will take effect only
798 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
807 * to interact with the IME while it is showing, {@code false} otherwise.
818 * (e.g. if the popup was not showing, this method would return false.)
834 * @return The currently selected item or null if the popup is not showing.
968 // the list view is actually showing it
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java229 public void setShowingForActionMode(boolean showing) { argument
230 if (showing) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardIndicationController.java208 * Sets the indication that is shown if nothing else is showing.
519 public void onKeyguardVisibilityChanged(boolean showing) { argument
520 if (showing) {
H A DExpandableNotificationRow.java145 /** Whether the blocking helper is showing on this notification (even if dismissed) */
154 /** Are we showing the "public" version */
1258 * Dismisses the notification with the option of showing the blocking helper in-place if we have
1316 * @return whether the notification is currently showing a view with an icon.
1717 // Don't translate if guts are showing.
1828 // Only fade the showing view of the pulsing notification.
1831 final NotificationContentView showing = getShowingLayout();
1832 if (showing != null) {
1833 showing.setDark(dark, fade, delay);
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DListPopupWindow.java624 boolean showing = isShowing();
625 if (showing) {
629 if (showing) {
642 * Show the popup list. If the list is already showing, this method
783 * <p>If the popup is showing, calling this method will take effect only
836 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
845 * to interact with the IME while it is showing, {@code false} otherwise.
856 * (e.g. if the popup was not showing, this method would return false.)
872 * @return The currently selected item or null if the popup is not showing.
1006 // the list view is actually showing it
[all...]
H A DActionBarOverlayLayout.java200 public void setShowingForActionMode(boolean showing) { argument
202 // if (showing) {
/frameworks/base/core/proto/android/server/
H A Dwindowmanagerservice.proto77 optional bool showing = 1;

Completed in 292 milliseconds

12