Home
last modified time | relevance | path

Searched refs:occluded (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarKeyguardViewManager.java275 public void setOccluded(boolean occluded, boolean animate) { in setOccluded() argument
276 if (occluded != mOccluded) { in setOccluded()
277 mStatusBar.onKeyguardOccludedChanged(occluded); in setOccluded()
279 if (occluded && !mOccluded && mShowing) { in setOccluded()
293 mOccluded = occluded; in setOccluded()
295 mStatusBar.updateMediaMetaData(false, animate && !occluded); in setOccluded()
297 mStatusBarWindowManager.setKeyguardOccluded(occluded); in setOccluded()
302 if (animate && !occluded && mShowing) { in setOccluded()
519 boolean occluded = mOccluded; in updateStates()
560 if ((showing && !occluded) != (mLastShowing && !mLastOccluded) || mFirstUpdate) { in updateStates()
[all …]
DStatusBarWindowManager.java266 public void setKeyguardOccluded(boolean occluded) { in setKeyguardOccluded() argument
267 mCurrentState.keyguardOccluded = occluded; in setKeyguardOccluded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardMonitorImpl.java96 public void notifyKeyguardState(boolean showing, boolean secure, boolean occluded) { in notifyKeyguardState() argument
97 if (mShowing == showing && mSecure == secure && mOccluded == occluded) return; in notifyKeyguardState()
100 mOccluded = occluded; in notifyKeyguardState()
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
DKeyguardServiceDelegate.java58 boolean occluded; field in KeyguardServiceDelegate.KeyguardState
183 if (mKeyguardState.occluded) {
184 mKeyguardService.setOccluded(mKeyguardState.occluded, false /* animate */);
245 mKeyguardState.occluded = isOccluded; in setOccluded()
387 pw.println(prefix + "occluded=" + mKeyguardState.occluded); in dump()
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
DTestWindowManagerPolicy.java448 public void onKeyguardOccludedChangedLw(boolean occluded) {
/frameworks/base/core/java/android/view/
DWindowManagerPolicy.java190 void onKeyguardOccludedChangedLw(boolean occluded); in onKeyguardOccludedChangedLw() argument
/frameworks/base/services/core/java/com/android/server/policy/
DPhoneWindowManager.java3967 public void onKeyguardOccludedChangedLw(boolean occluded) { in onKeyguardOccludedChangedLw() argument
3969 mPendingKeyguardOccluded = occluded; in onKeyguardOccludedChangedLw()
3972 setKeyguardOccludedLw(occluded, false /* force */); in onKeyguardOccludedChangedLw()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java3099 public void onKeyguardOccludedChanged(boolean occluded) { in onKeyguardOccludedChanged() argument
3101 mPolicy.onKeyguardOccludedChangedLw(occluded); in onKeyguardOccludedChanged()