Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardMonitor.java23 boolean isOccluded(); in isOccluded() method
DKeyguardMonitorImpl.java91 public boolean isOccluded() { in isOccluded() method in KeyguardMonitorImpl
/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/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
DStatusBarKeyguardViewManager.java288 mShowing, mKeyguardMonitor.isSecure(), mKeyguardMonitor.isOccluded()); in show()
394 mGoingToSleepVisibleNotOccluded = isShowing() && !isOccluded(); in onStartedGoingToSleep()
491 public boolean isOccluded() { in isOccluded() method in StatusBarKeyguardViewManager
519 mShowing, mKeyguardMonitor.isSecure(), mKeyguardMonitor.isOccluded()); in hide()
DStatusBarNotificationActivityStarter.java206 final boolean wasOccluded = mShadeController.isOccluded(); in onNotificationClicked()
262 && mShadeController.isOccluded()) { in handleNotificationClickAfterKeyguardDismissed()
395 row, mShadeController.isOccluded())), in startNotificationGutsIntent()
DStatusBarNotificationPresenter.java350 if (mShadeController.isOccluded()) { in canHeadsUp()
375 || mShadeController.isOccluded(); in canHeadsUp()
DStatusBar.java1625 public boolean isOccluded() { in isOccluded() method
1777 || mKeyguardMonitor.isShowing() && !mKeyguardMonitor.isOccluded()) { in handleSystemKey()
2513 && mStatusBarKeyguardViewManager.isOccluded()) { in executeRunnableDismissingKeyguard()
2766 boolean isOccluded = mStatusBarKeyguardViewManager.isOccluded(); in logStateToEventlog()
2772 isOccluded, in logStateToEventlog()
2786 isOccluded ? 1 : 0, in logStateToEventlog()
3454 mStatusBarKeyguardViewManager.isOccluded()); in updateKeyguardState()
4358 mShadeController.isOccluded()))); in startPendingIntentDismissingKeyguard()
DPhoneStatusBarPolicy.java455 (!mKeyguardMonitor.isShowing() || mKeyguardMonitor.isOccluded())) { in updateManagedProfile()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardService.java91 public void setOccluded(boolean isOccluded, boolean animate) {
94 mKeyguardViewMediator.setOccluded(isOccluded, animate);
DKeyguardViewMediator.java1193 public void setOccluded(boolean isOccluded, boolean animate) { in setOccluded() argument
1195 if (DEBUG) Log.d(TAG, "setOccluded " + isOccluded); in setOccluded()
1197 Message msg = mHandler.obtainMessage(SET_OCCLUDED, isOccluded ? 1 : 0, animate ? 1 : 0); in setOccluded()
1209 private void handleSetOccluded(boolean isOccluded, boolean animate) { in handleSetOccluded() argument
1212 if (mHiding && isOccluded) { in handleSetOccluded()
1218 if (mOccluded != isOccluded) { in handleSetOccluded()
1219 mOccluded = isOccluded; in handleSetOccluded()
1220 mUpdateMonitor.setKeyguardOccluded(isOccluded); in handleSetOccluded()
1221 mStatusBarKeyguardViewManager.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.java296 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(true); in executeRunnableDismissingKeyguard_nullRunnable_showingAndOccluded()
304 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in executeRunnableDismissingKeyguard_nullRunnable_showing()
312 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in executeRunnableDismissingKeyguard_nullRunnable_notShowing()
320 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_notShowing()
338 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_notShowing_secure()
357 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_isShowing()
376 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_isShowing_secure()
395 when(mStatusBarKeyguardViewManager.isOccluded()).thenReturn(false); in lockscreenStateMetrics_isShowingBouncer()
DStatusBarNotificationActivityStarterTest.java206 when(mShadeController.isOccluded()).thenReturn(true); in testOnNotificationClicked_keyGuardShowing()
269 when(mShadeController.isOccluded()).thenReturn(true); in testOnNotificationClicked_bubble_noContentIntent_keyGuardShowing()
299 when(mShadeController.isOccluded()).thenReturn(true); in testOnNotificationClicked_bubble_withContentIntent_keyGuardShowing()
/frameworks/base/services/core/java/com/android/server/policy/
DPhoneWindowManager.java3523 private boolean setKeyguardOccludedLw(boolean isOccluded, boolean force) { in setKeyguardOccludedLw() argument
3524 if (DEBUG_KEYGUARD) Slog.d(TAG, "setKeyguardOccluded occluded=" + isOccluded); in setKeyguardOccludedLw()
3527 final boolean changed = wasOccluded != isOccluded || force; in setKeyguardOccludedLw()
3528 if (!isOccluded && changed && showing) { in setKeyguardOccludedLw()
3538 } else if (isOccluded && changed && showing) { in setKeyguardOccludedLw()
3547 mKeyguardOccluded = isOccluded; in setKeyguardOccludedLw()
3548 mKeyguardDelegate.setOccluded(isOccluded, false /* animate */); in setKeyguardOccludedLw()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationMediaManager.java507 boolean hideBecauseOccluded = shadeController != null && shadeController.isOccluded(); in finishUpdateMediaMetaData()