Home
last modified time | relevance | path

Searched refs:showUnlockRipple (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/deviceentry/domain/interactor/
DAuthRippleInteractorTest.kt50 val showUnlockRipple by collectLastValue(underTest.showUnlockRipple) in enteringDeviceFromDeviceEntryIcon_udfpsNotSupported_doesNotShowAuthRipple() constant
55 assertThat(showUnlockRipple).isNull() in enteringDeviceFromDeviceEntryIcon_udfpsNotSupported_doesNotShowAuthRipple()
61 val showUnlockRipple by collectLastValue(underTest.showUnlockRipple) in enteringDeviceFromDeviceEntryIcon_udfpsSupported_showsAuthRipple() constant
66 assertThat(showUnlockRipple).isEqualTo(BiometricUnlockSource.FINGERPRINT_SENSOR) in enteringDeviceFromDeviceEntryIcon_udfpsSupported_showsAuthRipple()
72 val showUnlockRipple by collectLastValue(underTest.showUnlockRipple) in faceUnlocked_showsAuthRipple() constant
77 assertThat(showUnlockRipple).isEqualTo(BiometricUnlockSource.FACE_SENSOR) in faceUnlocked_showsAuthRipple()
83 val showUnlockRippleFromBiometricUnlock by collectLastValue(underTest.showUnlockRipple) in fingerprintUnlocked_showsAuthRipple()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DAuthRippleInteractor.kt50 val showUnlockRipple: Flow<BiometricUnlockSource> = in <lambda>() constant
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
DAuthRippleControllerTest.kt266 controller.showUnlockRipple(BiometricSourceType.FINGERPRINT) in testAnimatorRunWhenWakeAndUnlock_fingerprint()
288 controller.showUnlockRipple(BiometricSourceType.FACE) in testAnimatorRunWhenWakeAndUnlock_faceUdfpsFingerDown()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthRippleController.kt113 authRippleInteractor.showUnlockRipple.collect { biometricUnlockSource -> in <lambda>()
172 fun showUnlockRipple(biometricSourceType: BiometricSourceType) { in <lambda>() method
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DLegacyLockIconViewController.java739 mAuthRippleController.showUnlockRipple(FINGERPRINT); in onLongPress()