Home
last modified time | relevance | path

Searched refs:canSkipBouncer (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DUnlockMethodCache.java76 public boolean canSkipBouncer() { in canSkipBouncer() method in UnlockMethodCache
92 boolean canSkipBouncer = !secure || mKeyguardUpdateMonitor.getUserCanSkipBouncer(user); in update()
97 boolean changed = secure != mSecure || canSkipBouncer != mCanSkipBouncer || in update()
101 mCanSkipBouncer = canSkipBouncer; in update()
DLockIcon.java300 } else if (mUnlockMethodCache.canSkipBouncer()) { in getState()
DKeyguardBottomAreaView.java880 boolean canSkipBouncer = updateMonitor.getUserCanSkipBouncer( in getIntent()
883 return (secure && !canSkipBouncer) ? SECURE_CAMERA_INTENT : INSECURE_CAMERA_INTENT; in getIntent()
DScrimController.java132 mDarkenWhileDragging = !mUnlockMethodCache.canSkipBouncer(); in onTrackingStarted()
DStatusBar.java2742 return !mUnlockMethodCache.canSkipBouncer(); in isKeyguardCurrentlySecure()
3855 boolean canSkipBouncer = mUnlockMethodCache.canSkipBouncer(); in logStateToEventlog()
3861 canSkipBouncer); in logStateToEventlog()
3875 canSkipBouncer ? 1 : 0); in logStateToEventlog()
4614 if (!expand && !mUnlockMethodCache.canSkipBouncer()) { in onTrackingStopped()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardMonitor.java22 boolean canSkipBouncer(); in canSkipBouncer() method
DKeyguardMonitorImpl.java92 public boolean canSkipBouncer() { in canSkipBouncer() method in KeyguardMonitorImpl
DUserSwitcherController.java673 && !mKeyguardMonitor.canSkipBouncer(); in getUserCount()
695 && !mKeyguardMonitor.canSkipBouncer(); in getCount()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarTest.java177 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_notShowing()
195 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_notShowing_secure()
214 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_isShowing()
233 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_isShowing_secure()
252 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_isShowingBouncer()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
DFakeKeyguardMonitor.java70 public boolean canSkipBouncer() { in canSkipBouncer() method in FakeKeyguardMonitor
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DCastTile.java124 if (mKeyguard.isSecure() && !mKeyguard.canSkipBouncer()) { in handleClick()