/frameworks/base/services/core/java/com/android/server/policy/keyguard/ |
D | KeyguardServiceDelegate.java | 259 public void setOccluded(boolean isOccluded, boolean animate) { in setOccluded() argument 261 if (DEBUG) Log.v(TAG, "setOccluded(" + isOccluded + ") animate=" + animate); in setOccluded() 262 mKeyguardService.setOccluded(isOccluded, animate); in setOccluded() 264 mKeyguardState.occluded = isOccluded; in setOccluded()
|
D | KeyguardServiceWrapper.java | 59 public void setOccluded(boolean isOccluded, boolean animate) { in setOccluded() argument 61 mService.setOccluded(isOccluded, animate); in setOccluded()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardMonitor.java | 23 boolean isOccluded(); in isOccluded() method
|
D | KeyguardMonitorImpl.java | 92 public boolean isOccluded() { in isOccluded() method in KeyguardMonitorImpl
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardService.java | 91 public void setOccluded(boolean isOccluded, boolean animate) { 94 mKeyguardViewMediator.setOccluded(isOccluded, animate);
|
D | KeyguardViewMediator.java | 1198 public void setOccluded(boolean isOccluded, boolean animate) { in setOccluded() argument 1200 if (DEBUG) Log.d(TAG, "setOccluded " + isOccluded); in setOccluded() 1202 Message msg = mHandler.obtainMessage(SET_OCCLUDED, isOccluded ? 1 : 0, animate ? 1 : 0); in setOccluded() 1214 private void handleSetOccluded(boolean isOccluded, boolean animate) { in handleSetOccluded() argument 1217 if (mHiding && isOccluded) { in handleSetOccluded() 1223 if (mOccluded != isOccluded) { in handleSetOccluded() 1224 mOccluded = isOccluded; in handleSetOccluded() 1225 mUpdateMonitor.setKeyguardOccluded(isOccluded); in handleSetOccluded() 1226 mStatusBarKeyguardViewManager.setOccluded(isOccluded, animate in handleSetOccluded()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/ |
D | FakeKeyguardMonitor.java | 50 public boolean isOccluded() { in isOccluded() method in FakeKeyguardMonitor
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | ShadeController.java | 85 boolean isOccluded(); in isOccluded() method
|
D | StatusBarNotificationActivityStarter.java | 206 final boolean wasOccluded = mShadeController.isOccluded(); in onNotificationClicked() 262 && mShadeController.isOccluded()) { in handleNotificationClickAfterKeyguardDismissed() 395 row, mShadeController.isOccluded())), in startNotificationGutsIntent()
|
D | StatusBarKeyguardViewManager.java | 305 mShowing, mKeyguardMonitor.isSecure(), mKeyguardMonitor.isOccluded()); in show() 422 mGoingToSleepVisibleNotOccluded = isShowing() && !isOccluded(); in onStartedGoingToSleep() 519 public boolean isOccluded() { in isOccluded() method in StatusBarKeyguardViewManager 547 mShowing, mKeyguardMonitor.isSecure(), mKeyguardMonitor.isOccluded()); in hide()
|
D | StatusBarNotificationPresenter.java | 344 if (mShadeController.isOccluded()) { in canHeadsUp() 370 || mShadeController.isOccluded(); in canHeadsUp()
|
D | StatusBar.java | 1700 public boolean isOccluded() { in isOccluded() method 1852 || mKeyguardMonitor.isShowing() && !mKeyguardMonitor.isOccluded()) { in handleSystemKey() 2615 && mStatusBarKeyguardViewManager.isOccluded()) { in executeRunnableDismissingKeyguard() 2872 boolean isOccluded = mStatusBarKeyguardViewManager.isOccluded(); in logStateToEventlog() 2878 isOccluded, in logStateToEventlog() 2892 isOccluded ? 1 : 0, in logStateToEventlog() 3578 mStatusBarKeyguardViewManager.isOccluded()); in updateKeyguardState() 4514 mShadeController.isOccluded()))); in startPendingIntentDismissingKeyguard()
|
D | PhoneStatusBarPolicy.java | 458 (!mKeyguardMonitor.isShowing() || mKeyguardMonitor.isOccluded())) { in updateManagedProfile()
|
/frameworks/base/core/java/com/android/internal/policy/ |
D | IKeyguardService.aidl | 34 void setOccluded(boolean isOccluded, boolean animate); in setOccluded() argument
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | StatusBarTest.java | 294 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(true); in executeRunnableDismissingKeyguard_nullRunnable_showingAndOccluded() 302 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in executeRunnableDismissingKeyguard_nullRunnable_showing() 310 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in executeRunnableDismissingKeyguard_nullRunnable_notShowing() 318 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_notShowing() 336 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_notShowing_secure() 355 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_isShowing() 374 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_isShowing_secure() 393 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_isShowingBouncer()
|
D | StatusBarNotificationActivityStarterTest.java | 204 when(mShadeController.isOccluded()).thenReturn(true); in testOnNotificationClicked_keyGuardShowing() 267 when(mShadeController.isOccluded()).thenReturn(true); in testOnNotificationClicked_bubble_noContentIntent_keyGuardShowing() 297 when(mShadeController.isOccluded()).thenReturn(true); in testOnNotificationClicked_bubble_withContentIntent_keyGuardShowing()
|
/frameworks/base/services/core/java/com/android/server/policy/ |
D | PhoneWindowManager.java | 3538 private boolean setKeyguardOccludedLw(boolean isOccluded, boolean force) { in setKeyguardOccludedLw() argument 3539 if (DEBUG_KEYGUARD) Slog.d(TAG, "setKeyguardOccluded occluded=" + isOccluded); in setKeyguardOccludedLw() 3542 final boolean changed = wasOccluded != isOccluded || force; in setKeyguardOccludedLw() 3543 if (!isOccluded && changed && showing) { in setKeyguardOccludedLw() 3553 } else if (isOccluded && changed && showing) { in setKeyguardOccludedLw() 3562 mKeyguardOccluded = isOccluded; in setKeyguardOccludedLw() 3563 mKeyguardDelegate.setOccluded(isOccluded, false /* animate */); in setKeyguardOccludedLw()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationMediaManager.java | 528 boolean hideBecauseOccluded = shadeController != null && shadeController.isOccluded(); in finishUpdateMediaMetaData()
|