Home
last modified time | relevance | path

Searched refs:fingerprintAllowed (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/shared/model/
DBouncerMessageStrings.kt253 private fun patternDefaultMessage(fingerprintAllowed: Boolean): Int { in patternDefaultMessage()
254 return if (fingerprintAllowed) R.string.kg_unlock_with_pattern_or_fp in patternDefaultMessage()
258 private fun pinDefaultMessage(fingerprintAllowed: Boolean): Int { in pinDefaultMessage()
259 return if (fingerprintAllowed) R.string.kg_unlock_with_pin_or_fp in pinDefaultMessage()
263 private fun passwordDefaultMessage(fingerprintAllowed: Boolean): Int { in passwordDefaultMessage()
264 return if (fingerprintAllowed) R.string.kg_unlock_with_password_or_fp in passwordDefaultMessage()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/repository/
DBiometricSettingsRepositoryTest.kt158 val fingerprintAllowed = collectLastValue(underTest.isFingerprintEnrolledAndEnabled) in fingerprintEnrollmentChange() constant
163 assertThat(fingerprintAllowed()).isTrue() in fingerprintEnrollmentChange()
167 assertThat(fingerprintAllowed()).isTrue() in fingerprintEnrollmentChange()
170 assertThat(fingerprintAllowed()).isFalse() in fingerprintEnrollmentChange()
178 val fingerprintAllowed = collectLastValue(underTest.isFingerprintEnrolledAndEnabled) in fingerprintEnabledStateChange() constant
184 assertThat(fingerprintAllowed()).isTrue() in fingerprintEnabledStateChange()
188 assertThat(fingerprintAllowed()).isFalse() in fingerprintEnabledStateChange()
192 assertThat(fingerprintAllowed()).isTrue() in fingerprintEnabledStateChange()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DAlternateBouncerInteractor.kt128 fingerprintAllowed, in <lambda>() method
132 fingerprintAllowed && in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java1416 boolean fingerprintAllowed = fingerprint != null && fingerprint.mAuthenticated in getUserUnlockedWithBiometric()
1420 return fingerprintAllowed || unlockedByFace; in getUserUnlockedWithBiometric()
1441 boolean fingerprintAllowed = fingerprint != null && fingerprint.mAuthenticated in getUserUnlockedWithBiometricAndIsBypassing()
1443 return fingerprintAllowed || (isCurrentUserUnlockedWithFace() in getUserUnlockedWithBiometricAndIsBypassing()