Home
last modified time | relevance | path

Searched refs:getUserCanSkipBouncer (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DKeyguardStateControllerTest.java149 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(anyInt())).thenReturn(true); in testCanSkipLockScreen()
164 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(anyInt())).thenReturn(true); in testCanSkipLockScreen_updateCalledOnFacesCleared()
179 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(anyInt())).thenReturn(true); in testCanSkipLockScreen_updateCalledOnFingerprintssCleared()
200 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(anyInt())).thenReturn(true); in testIsUnlocked()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DKeyguardIndicationControllerTest.java1047 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(getCurrentUser())) in coEx_faceSuccess_showsPressToOpen()
1071 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(getCurrentUser())) in coEx_faceSuccess_touchExplorationEnabled_showsFaceUnlockedSwipeToOpen()
1095 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(getCurrentUser())) in coEx_faceSuccess_a11yEnabled_showsFaceUnlockedSwipeToOpen()
1118 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(getCurrentUser())) in faceOnly_faceSuccess_showsFaceUnlockedSwipeToOpen()
1140 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(getCurrentUser())) in udfpsOnly_a11yEnabled_showsSwipeToOpen()
1160 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(getCurrentUser())) in udfpsOnly_showsPressToOpen()
1181 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(getCurrentUser())) in canSkipBouncer_noSecurity_showSwipeToUnlockHint()
1199 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(getCurrentUser())) in cannotSkipBouncer_showSwipeToUnlockHint()
1507 when(mKeyguardUpdateMonitor.getUserCanSkipBouncer(getCurrentUser())) in faceUnlockedMessageShowsEvenWhenFingerprintMessageShowing()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java951 Assert.assertTrue(mKeyguardUpdateMonitor.getUserCanSkipBouncer( in trustAgentHasTrust()
981 Assert.assertFalse(mKeyguardUpdateMonitor.getUserCanSkipBouncer( in trustAgentHasTrust_fingerprintLockout()
1090 assertThat(mKeyguardUpdateMonitor.getUserCanSkipBouncer(user)).isTrue(); in testGetUserCanSkipBouncer_whenFace()
1101 assertThat(mKeyguardUpdateMonitor.getUserCanSkipBouncer(user)).isFalse(); in testGetUserCanSkipBouncer_whenFace_nonStrongAndDisallowed()
1108 assertThat(mKeyguardUpdateMonitor.getUserCanSkipBouncer(user)).isTrue(); in testGetUserCanSkipBouncer_whenFingerprint()
1117 assertThat(mKeyguardUpdateMonitor.getUserCanSkipBouncer(user)).isFalse(); in testGetUserCanSkipBouncer_whenFingerprint_nonStrongAndDisallowed()
1190 assertThat(mKeyguardUpdateMonitor.getUserCanSkipBouncer(user)).isTrue(); in testGetUserCanSkipBouncer_whenTrust()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardStateControllerImpl.java258 boolean canDismissLockScreen = !secure || mKeyguardUpdateMonitor.getUserCanSkipBouncer(user) in update()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java871 if (getUserCanSkipBouncer(userId)) { in onFingerprintAuthenticated()
1146 if (getUserCanSkipBouncer(userId)) { in onFaceAuthenticated()
1391 public boolean getUserCanSkipBouncer(int userId) { in getUserCanSkipBouncer() method in KeyguardUpdateMonitor
2768 final boolean userCanDismissLockScreen = getUserCanSkipBouncer(user) in shouldTriggerActiveUnlock()
2842 final boolean userCanSkipBouncer = getUserCanSkipBouncer(user); in shouldListenForFingerprint()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DKeyguardIndicationController.java1160 && !mKeyguardUpdateMonitor.getUserCanSkipBouncer( in showActionToUnlock()
1181 final boolean canSkipBouncer = mKeyguardUpdateMonitor.getUserCanSkipBouncer( in showActionToUnlock()