Home
last modified time | relevance | path

Searched refs:showing (Results 1 – 25 of 74) sorted by relevance

123

/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
DQSContainerController.kt6 fun setCustomizerShowing(showing: Boolean) = setCustomizerShowing(showing, 0L)
8 fun setCustomizerShowing(showing: Boolean, animationDuration: Long)
10 fun setDetailShowing(showing: Boolean)
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShadeWindowController.java72 default void setKeyguardShowing(boolean showing) {} in setKeyguardShowing() argument
87 default void setBouncerShowing(boolean showing) {} in setBouncerShowing() argument
90 default void setGlanceableHubShowing(boolean showing) {} in setGlanceableHubShowing() argument
93 default void setBackdropShowing(boolean showing) {} in setBackdropShowing() argument
116 default void setHeadsUpShowing(boolean showing) {} in setHeadsUpShowing() argument
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/util/
DTestableAlertDialog.kt49 private var showing = false variable
59 showing = true in show()
69 return visible && showing in isShowing()
73 if (!showing) { in dismiss()
81 showing = false in dismiss()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardStateControllerImpl.java194 public void notifyKeyguardState(boolean showing, boolean occluded) { in notifyKeyguardState() argument
195 if (mShowing == showing && mOccluded == occluded) return; in notifyKeyguardState()
196 mShowing = showing; in notifyKeyguardState()
198 mKeyguardUpdateMonitor.setKeyguardShowing(showing, occluded); in notifyKeyguardState()
200 "Keyguard showing: " + showing + " occluded: " + occluded); in notifyKeyguardState()
206 notifyKeyguardDismissAmountChanged(showing ? 0f : 1f, false); in notifyKeyguardState()
362 public void notifyPrimaryBouncerShowing(boolean showing) { in notifyPrimaryBouncerShowing() argument
363 if (mPrimaryBouncerShowing != showing) { in notifyPrimaryBouncerShowing()
364 mPrimaryBouncerShowing = showing; in notifyPrimaryBouncerShowing()
DKeyguardStateController.java201 default void notifyKeyguardState(boolean showing, boolean occluded) {} in notifyKeyguardState() argument
203 default void notifyPrimaryBouncerShowing(boolean showing) {} in notifyPrimaryBouncerShowing() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/brightness/domain/interactor/
DBrightnessMirrorShowingInteractor.kt31 fun setMirrorShowing(showing: Boolean) { in setMirrorShowing()
32 brightnessMirrorShowingRepository.setMirrorShowing(showing) in setMirrorShowing()
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/brightness/data/repository/
DBrightnessMirrorShowingRepository.kt29 fun setMirrorShowing(showing: Boolean) { in setMirrorShowing()
30 _isShowing.value = showing in setMirrorShowing()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DUdfpsDrawable.kt55 set(showing) { in <lambda>()
56 if (field == showing) { in <lambda>()
59 field = showing in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/settings/brightness/ui/viewmodel/
DBrightnessMirrorViewModelTest.kt66 val showing by collectLastValue(underTest.isShowing) in showHideMirror_isShowing() constant
68 assertThat(showing).isFalse() in showHideMirror_isShowing()
71 assertThat(showing).isTrue() in showHideMirror_isShowing()
74 assertThat(showing).isFalse() in showHideMirror_isShowing()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/
DFakeKeyguardStateController.java31 public void notifyKeyguardState(boolean showing, boolean occluded) { in notifyKeyguardState() argument
32 mShowing = showing; in notifyKeyguardState()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/
DFakeKeyguardStateController.java54 public void setShowing(boolean showing) { in setShowing() argument
55 mIsShowing = showing; in setShowing()
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationsQSContainerController.kt221 override fun setCustomizerShowing(showing: Boolean, animationDuration: Long) { in <lambda>()
222 if (showing != isQSCustomizing) { in <lambda>()
223 isQSCustomizing = showing in <lambda>()
224 shadeHeaderController.startCustomizingAnimation(showing, animationDuration) in <lambda>()
229 override fun setDetailShowing(showing: Boolean) { in <lambda>()
230 isQSDetailShowing = showing in <lambda>()
DNotificationShadeWindowControllerImpl.java694 public void setKeyguardShowing(boolean showing) { in setKeyguardShowing() argument
695 mCurrentState.keyguardShowing = showing; in setKeyguardShowing()
731 public void setBouncerShowing(boolean showing) { in setBouncerShowing() argument
732 mCurrentState.bouncerShowing = showing; in setBouncerShowing()
737 public void setGlanceableHubShowing(boolean showing) { in setGlanceableHubShowing() argument
738 mCurrentState.glanceableHubShowing = showing; in setGlanceableHubShowing()
743 public void setBackdropShowing(boolean showing) { in setBackdropShowing() argument
744 mCurrentState.mediaBackdropShowing = showing; in setBackdropShowing()
810 public void setHeadsUpShowing(boolean showing) { in setHeadsUpShowing() argument
811 mCurrentState.headsUpNotificationShowing = showing; in setHeadsUpShowing()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DSystemUIDialogManager.java75 void setShowing(SystemUIDialog dialog, boolean showing) { in setShowing() argument
77 if (showing) { in setShowing()
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
DKeyguardServiceDelegate.java82 boolean showing; field in KeyguardServiceDelegate.KeyguardState
100 showing = true; in reset()
165 mKeyguardState.showing = false; in bindService()
247 mKeyguardState.showing = mKeyguardService.isShowing(); in isShowing()
249 return mKeyguardState.showing; in isShowing()
467 proto.write(SHOWING, mKeyguardState.showing); in dumpDebug()
478 pw.println(prefix + "showing=" + mKeyguardState.showing); in dump()
DKeyguardStateMonitor.java86 public void onShowingStateChanged(boolean showing, int userId) { in onShowingStateChanged() argument
89 mIsShowing = showing; in onShowingStateChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DDozeLog.java173 public void traceKeyguardBouncerChanged(boolean showing) { in traceKeyguardBouncerChanged() argument
174 mLogger.logKeyguardBouncerChanged(showing); in traceKeyguardBouncerChanged()
224 public void traceKeyguard(boolean showing) { in traceKeyguard() argument
225 mLogger.logKeyguardVisibilityChange(showing); in traceKeyguard()
226 if (!showing) mPulsing = false; in traceKeyguard()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/biometrics/data/repository/
DFakePromptRepository.kt81 fun setIsShowing(showing: Boolean) { in setIsShowing()
82 _isShowing.value = showing in setIsShowing()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ui/adapter/
DQSSceneAdapter.kt337 override fun setCustomizerShowing(showing: Boolean) { in setCustomizerShowing()
338 setCustomizerShowing(showing, 0L) in setCustomizerShowing()
341 override fun setCustomizerShowing(showing: Boolean, animationDuration: Long) { in setCustomizerShowing()
343 if (showing) { in setCustomizerShowing()
359 override fun setDetailShowing(showing: Boolean) {} in setDetailShowing()
/frameworks/base/core/java/com/android/internal/policy/
DIKeyguardStateCallback.aidl19 void onShowingStateChanged(boolean showing, int userId); in onShowingStateChanged() argument
/frameworks/base/packages/SystemUI/docs/
Dcamera.md11 3. whether the device is locked (defined as "keyguard is showing").
19 * If the keyguard is not showing (device is unlocked)
21 * If the keyguard is showing (device is locked)
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/pip/
DPipBoundsState.java405 public void setShelfVisibility(boolean showing, int height) { in setShelfVisibility() argument
406 setShelfVisibility(showing, height, true); in setShelfVisibility()
410 public void setShelfVisibility(boolean showing, int height, boolean updateMovementBounds) { in setShelfVisibility() argument
411 final boolean shelfShowing = showing && height > 0; in setShelfVisibility()
416 mIsShelfShowing = showing; in setShelfVisibility()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DOccludingAppDeviceEntryInteractor.kt78 ) { occluded, showing, primaryBouncerShowing, alternateBouncerVisible, dozing -> in <lambda>() method
80 showing && in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
DFromOccludedTransitionInteractor.kt160 .filterRelevantKeyguardStateAnd { (occluded, showing) -> !occluded && !showing } in <lambda>() method
/frameworks/proto_logging/stats/enums/view/
Denums.proto32 // optimized for showing system-provided content while the device is
36 // but is optimized for showing static system-provided content while the

123