Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DDynamicPrivacyControllerTest.java57 when(mCache.canSkipBouncer()).thenReturn(false); in setUp()
66 when(mCache.canSkipBouncer()).thenReturn(false); in testDynamicFalseWhenCannotSkipBouncer()
74 when(mCache.canSkipBouncer()).thenReturn(true); in testDynamicTrueWhenCanSkipBouncer()
81 when(mCache.canSkipBouncer()).thenReturn(true); in testNotifiedWhenEnabled()
94 when(mCache.canSkipBouncer()).thenReturn(true); in testNotNotifiedWithoutNotifications()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DUnlockMethodCache.java101 public boolean canSkipBouncer() { in canSkipBouncer() method in UnlockMethodCache
117 boolean canSkipBouncer = !secure || mKeyguardUpdateMonitor.getUserCanSkipBouncer(user) in update()
121 boolean changed = secure != mSecure || canSkipBouncer != mCanSkipBouncer || in update()
125 mCanSkipBouncer = canSkipBouncer; in update()
DLockIcon.java289 && mUnlockMethodCache.canSkipBouncer(); in updateClickability()
375 } else if ((mUnlockMethodCache.canSkipBouncer() || !mKeyguardShowing) && !mSimLocked) { in getState()
DScrimController.java187 mDarkenWhileDragging = !mUnlockMethodCache.canSkipBouncer(); in ScrimController()
345 mDarkenWhileDragging = !mUnlockMethodCache.canSkipBouncer(); in onTrackingStarted()
DKeyguardBottomAreaView.java821 boolean canSkipBouncer = updateMonitor.getUserCanSkipBouncer( in getIntent()
824 return (secure && !canSkipBouncer) ? SECURE_CAMERA_INTENT : INSECURE_CAMERA_INTENT; in getIntent()
DStatusBar.java1332 if (!mUnlockMethodCache.canSkipBouncer()) { in requestFaceAuth()
1582 return !mUnlockMethodCache.canSkipBouncer(); in isKeyguardCurrentlySecure()
2627 && mUnlockMethodCache.canSkipBouncer() in dismissKeyguardThenExecute()
2769 boolean canSkipBouncer = mUnlockMethodCache.canSkipBouncer(); in logStateToEventlog()
2775 canSkipBouncer); in logStateToEventlog()
2789 canSkipBouncer ? 1 : 0); in logStateToEventlog()
3501 if (!expand && !mUnlockMethodCache.canSkipBouncer()) { in onTrackingStopped()
DStatusBarNotificationPresenter.java406 row.setSecureStateProvider(mUnlockMethodCache::canSkipBouncer); in onBindRow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardMonitor.java22 boolean canSkipBouncer(); in canSkipBouncer() method
DKeyguardMonitorImpl.java112 public boolean canSkipBouncer() { in canSkipBouncer() method in KeyguardMonitorImpl
DUserSwitcherController.java608 && !mKeyguardMonitor.canSkipBouncer(); in getUserCount()
630 && !mKeyguardMonitor.canSkipBouncer(); in getCount()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
DFakeKeyguardMonitor.java85 public boolean canSkipBouncer() { in canSkipBouncer() method in FakeKeyguardMonitor
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DDynamicPrivacyController.java80 return mUnlockMethodCache.canSkipBouncer() && isDynamicPrivacyEnabled(); in isDynamicallyUnlocked()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarTest.java321 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_notShowing()
339 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_notShowing_secure()
358 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_isShowing()
377 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_isShowing_secure()
396 when(mUnlockMethodCache.canSkipBouncer()).thenReturn(true); in lockscreenStateMetrics_isShowingBouncer()
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
DGlobalActionsDialog.java219 boolean locked = !unlockMethodCache.canSkipBouncer(); in GlobalActionsDialog()