/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | KeyguardStateControllerTest.java | 83 assertThat(mKeyguardStateController.isOccluded()).isFalse(); in testIsOccluded() 85 assertThat(mKeyguardStateController.isOccluded()).isTrue(); in testIsOccluded()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardStateController.java | 61 boolean isOccluded(); in isOccluded() method
|
D | KeyguardStateControllerImpl.java | 124 public boolean isOccluded() { in isOccluded() method in KeyguardStateControllerImpl
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/ |
D | FakeKeyguardStateController.java | 57 public boolean isOccluded() { in isOccluded() method in FakeKeyguardStateController
|
/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/keyguard/ |
D | KeyguardService.java | 94 public void setOccluded(boolean isOccluded, boolean animate) { 97 mKeyguardViewMediator.setOccluded(isOccluded, animate);
|
D | KeyguardViewMediator.java | 1270 public void setOccluded(boolean isOccluded, boolean animate) { in setOccluded() argument 1272 if (DEBUG) Log.d(TAG, "setOccluded " + isOccluded); in setOccluded() 1274 Message msg = mHandler.obtainMessage(SET_OCCLUDED, isOccluded ? 1 : 0, animate ? 1 : 0); in setOccluded() 1286 private void handleSetOccluded(boolean isOccluded, boolean animate) { in handleSetOccluded() argument 1289 if (mHiding && isOccluded) { in handleSetOccluded() 1295 if (mOccluded != isOccluded) { in handleSetOccluded() 1296 mOccluded = isOccluded; in handleSetOccluded() 1297 mUpdateMonitor.setKeyguardOccluded(isOccluded); in handleSetOccluded() 1298 mKeyguardViewControllerLazy.get().setOccluded(isOccluded, animate in handleSetOccluded()
|
/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 | 443 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(true); in executeRunnableDismissingKeyguard_nullRunnable_showingAndOccluded() 451 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in executeRunnableDismissingKeyguard_nullRunnable_showing() 459 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in executeRunnableDismissingKeyguard_nullRunnable_notShowing() 467 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_notShowing() 485 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_notShowing_secure() 504 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_isShowing() 523 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_isShowing_secure() 542 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_isShowingBouncer()
|
D | StatusBarNotificationActivityStarterTest.java | 247 when(mStatusBar.isOccluded()).thenReturn(true); in testOnNotificationClicked_keyGuardShowing() 310 when(mStatusBar.isOccluded()).thenReturn(true); in testOnNotificationClicked_bubble_noContentIntent_keyGuardShowing() 340 when(mStatusBar.isOccluded()).thenReturn(true); in testOnNotificationClicked_bubble_withContentIntent_keyGuardShowing()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarter.java | 260 final boolean wasOccluded = mStatusBar.isOccluded(); in onNotificationClicked() 305 && mStatusBar.isOccluded()) { in handleNotificationClickAfterKeyguardDismissed() 448 row, mStatusBar.isOccluded())), in startNotificationGutsIntent()
|
D | StatusBarKeyguardViewManager.java | 346 mKeyguardStateController.isOccluded()); in show() 559 public boolean isOccluded() { in isOccluded() method in StatusBarKeyguardViewManager 579 mKeyguardStateController.isOccluded()); in hide()
|
D | StatusBarNotificationPresenter.java | 485 if (mStatusBar.isOccluded()) { 508 if (mKeyguardStateController.isShowing() && !mStatusBar.isOccluded()) {
|
D | StatusBar.java | 1832 public boolean isOccluded() { in isOccluded() method 1994 || mKeyguardStateController.isShowing() && !mKeyguardStateController.isOccluded()) { in handleSystemKey() 2712 && mStatusBarKeyguardViewManager.isOccluded()) { in executeRunnableDismissingKeyguard() 2953 boolean isOccluded = mStatusBarKeyguardViewManager.isOccluded(); in logStateToEventlog() 2959 isOccluded, in logStateToEventlog() 2973 isOccluded ? 1 : 0, in logStateToEventlog() 3416 && !mStatusBarKeyguardViewManager.isOccluded(); in updateDozingState() 3585 mStatusBarKeyguardViewManager.isOccluded()); in updateKeyguardState() 4224 mActivityLaunchAnimator.getLaunchAnimation(associatedView, isOccluded()))); in startPendingIntentDismissingKeyguard()
|
D | PhoneStatusBarPolicy.java | 484 || mKeyguardStateController.isOccluded())) { in updateManagedProfile()
|
/frameworks/base/services/core/java/com/android/server/policy/ |
D | PhoneWindowManager.java | 3454 private boolean setKeyguardOccludedLw(boolean isOccluded, boolean force) { in setKeyguardOccludedLw() argument 3455 if (DEBUG_KEYGUARD) Slog.d(TAG, "setKeyguardOccluded occluded=" + isOccluded); in setKeyguardOccludedLw() 3458 final boolean changed = wasOccluded != isOccluded || force; in setKeyguardOccludedLw() 3459 if (!isOccluded && changed && showing) { in setKeyguardOccludedLw() 3468 } else if (isOccluded && changed && showing) { in setKeyguardOccludedLw() 3476 mKeyguardOccluded = isOccluded; in setKeyguardOccludedLw() 3477 mKeyguardDelegate.setOccluded(isOccluded, false /* animate */); in setKeyguardOccludedLw()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationMediaManager.java | 554 boolean hideBecauseOccluded = mStatusBarLazy.get().isOccluded(); in finishUpdateMediaMetaData()
|