/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardMonitor.java | 23 boolean isOccluded(); in isOccluded() method
|
D | KeyguardMonitorImpl.java | 91 public boolean isOccluded() { in isOccluded() method in KeyguardMonitorImpl
|
/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/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 | StatusBarKeyguardViewManager.java | 288 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()
|
D | StatusBarNotificationActivityStarter.java | 206 final boolean wasOccluded = mShadeController.isOccluded(); in onNotificationClicked() 262 && mShadeController.isOccluded()) { in handleNotificationClickAfterKeyguardDismissed() 395 row, mShadeController.isOccluded())), in startNotificationGutsIntent()
|
D | StatusBarNotificationPresenter.java | 350 if (mShadeController.isOccluded()) { in canHeadsUp() 375 || mShadeController.isOccluded(); in canHeadsUp()
|
D | StatusBar.java | 1625 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()
|
D | PhoneStatusBarPolicy.java | 455 (!mKeyguardMonitor.isShowing() || mKeyguardMonitor.isOccluded())) { in updateManagedProfile()
|
/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 | 1193 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/ |
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 | 296 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()
|
D | StatusBarNotificationActivityStarterTest.java | 206 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/ |
D | PhoneWindowManager.java | 3523 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/ |
D | NotificationMediaManager.java | 507 boolean hideBecauseOccluded = shadeController != null && shadeController.isOccluded(); in finishUpdateMediaMetaData()
|