Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DDynamicPrivacyControllerTest.java61 when(mCache.canSkipBouncer()).thenReturn(false); in setUp()
74 when(mCache.canSkipBouncer()).thenReturn(false); in testDynamicFalseWhenCannotSkipBouncer()
82 when(mCache.canSkipBouncer()).thenReturn(true); in testDynamicTrueWhenCanSkipBouncer()
89 when(mCache.canSkipBouncer()).thenReturn(true); in testNotifiedWhenEnabled()
102 when(mCache.canSkipBouncer()).thenReturn(true); in testNotNotifiedWithoutNotifications()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DUnlockMethodCache.java99 public boolean canSkipBouncer() { in canSkipBouncer() method in UnlockMethodCache
122 boolean canSkipBouncer = !secure || mKeyguardUpdateMonitor.getUserCanSkipBouncer(user) in update()
127 boolean changed = secure != mSecure || canSkipBouncer != mCanSkipBouncer in update()
132 mCanSkipBouncer = canSkipBouncer; in update()
DLockIcon.java376 && mUnlockMethodCache.canSkipBouncer(); in updateClickability()
513 if ((mUnlockMethodCache.canSkipBouncer() || !mKeyguardShowing in getState()
DScrimController.java190 mDarkenWhileDragging = !mUnlockMethodCache.canSkipBouncer(); in ScrimController()
359 mDarkenWhileDragging = !mUnlockMethodCache.canSkipBouncer(); in onTrackingStarted()
DKeyguardBottomAreaView.java822 boolean canSkipBouncer = updateMonitor.getUserCanSkipBouncer( in getIntent()
825 return (secure && !canSkipBouncer) ? SECURE_CAMERA_INTENT : INSECURE_CAMERA_INTENT; in getIntent()
DStatusBar.java1407 if (!mUnlockMethodCache.canSkipBouncer()) { in requestFaceAuth()
1657 return !mUnlockMethodCache.canSkipBouncer(); in isKeyguardCurrentlySecure()
2729 && mUnlockMethodCache.canSkipBouncer() in dismissKeyguardThenExecute()
2875 boolean canSkipBouncer = mUnlockMethodCache.canSkipBouncer(); in logStateToEventlog()
2881 canSkipBouncer); in logStateToEventlog()
2895 canSkipBouncer ? 1 : 0); in logStateToEventlog()
3626 if (!expand && !mUnlockMethodCache.canSkipBouncer()) { in onTrackingStopped()
DStatusBarNotificationPresenter.java401 row.setSecureStateProvider(mUnlockMethodCache::canSkipBouncer); in onBindRow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DDynamicPrivacyController.java95 return (mUnlockMethodCache.canSkipBouncer() || mKeyguardMonitor.isKeyguardGoingAway() in isDynamicallyUnlocked()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarTest.java319 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_notShowing()
337 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_notShowing_secure()
356 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_isShowing()
375 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_isShowing_secure()
394 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_isShowingBouncer()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DUserSwitcherController.java611 && !mUnlockMethodCache.canSkipBouncer(); in getUserCount()
633 && !mUnlockMethodCache.canSkipBouncer(); in getCount()
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
DGlobalActionsDialog.java221 boolean locked = !unlockMethodCache.canSkipBouncer() in GlobalActionsDialog()