Home
last modified time | relevance | path

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

/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/statusbar/policy/
DKeyguardMonitor.java23 boolean isOccluded(); in isOccluded() method
DKeyguardMonitorImpl.java92 public boolean isOccluded() { in isOccluded() method in KeyguardMonitorImpl
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardService.java91 public void setOccluded(boolean isOccluded, boolean animate) {
94 mKeyguardViewMediator.setOccluded(isOccluded, animate);
DKeyguardViewMediator.java1198 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/
DFakeKeyguardMonitor.java50 public boolean isOccluded() { in isOccluded() method in FakeKeyguardMonitor
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DShadeController.java85 boolean isOccluded(); in isOccluded() method
DStatusBarNotificationActivityStarter.java206 final boolean wasOccluded = mShadeController.isOccluded(); in onNotificationClicked()
262 && mShadeController.isOccluded()) { in handleNotificationClickAfterKeyguardDismissed()
395 row, mShadeController.isOccluded())), in startNotificationGutsIntent()
DStatusBarKeyguardViewManager.java305 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()
DStatusBarNotificationPresenter.java344 if (mShadeController.isOccluded()) { in canHeadsUp()
370 || mShadeController.isOccluded(); in canHeadsUp()
DStatusBar.java1700 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()
DPhoneStatusBarPolicy.java458 (!mKeyguardMonitor.isShowing() || mKeyguardMonitor.isOccluded())) { in updateManagedProfile()
/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.java294 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()
DStatusBarNotificationActivityStarterTest.java204 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/
DPhoneWindowManager.java3538 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/
DNotificationMediaManager.java528 boolean hideBecauseOccluded = shadeController != null && shadeController.isOccluded(); in finishUpdateMediaMetaData()