Home
last modified time | relevance | path

Searched refs:isOccluded (Results 1 – 18 of 18) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DKeyguardStateControllerTest.java83 assertThat(mKeyguardStateController.isOccluded()).isFalse(); in testIsOccluded()
85 assertThat(mKeyguardStateController.isOccluded()).isTrue(); in testIsOccluded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardStateController.java61 boolean isOccluded(); in isOccluded() method
DKeyguardStateControllerImpl.java124 public boolean isOccluded() { in isOccluded() method in KeyguardStateControllerImpl
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
DFakeKeyguardStateController.java57 public boolean isOccluded() { in isOccluded() method in FakeKeyguardStateController
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
DKeyguardServiceDelegate.java259 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()
DKeyguardServiceWrapper.java59 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/
DKeyguardService.java94 public void setOccluded(boolean isOccluded, boolean animate) {
97 mKeyguardViewMediator.setOccluded(isOccluded, animate);
DKeyguardViewMediator.java1270 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/
DIKeyguardService.aidl34 void setOccluded(boolean isOccluded, boolean animate); in setOccluded() argument
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarTest.java443 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()
DStatusBarNotificationActivityStarterTest.java247 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/
DStatusBarNotificationActivityStarter.java260 final boolean wasOccluded = mStatusBar.isOccluded(); in onNotificationClicked()
305 && mStatusBar.isOccluded()) { in handleNotificationClickAfterKeyguardDismissed()
448 row, mStatusBar.isOccluded())), in startNotificationGutsIntent()
DStatusBarKeyguardViewManager.java346 mKeyguardStateController.isOccluded()); in show()
559 public boolean isOccluded() { in isOccluded() method in StatusBarKeyguardViewManager
579 mKeyguardStateController.isOccluded()); in hide()
DStatusBarNotificationPresenter.java485 if (mStatusBar.isOccluded()) {
508 if (mKeyguardStateController.isShowing() && !mStatusBar.isOccluded()) {
DStatusBar.java1832 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()
DPhoneStatusBarPolicy.java484 || mKeyguardStateController.isOccluded())) { in updateManagedProfile()
/frameworks/base/services/core/java/com/android/server/policy/
DPhoneWindowManager.java3454 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/
DNotificationMediaManager.java554 boolean hideBecauseOccluded = mStatusBarLazy.get().isOccluded(); in finishUpdateMediaMetaData()