Home
last modified time | relevance | path

Searched refs:Password (Results 1 – 25 of 39) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/shared/model/
DBouncerMessageStrings.kt20 import com.android.systemui.authentication.shared.model.AuthenticationMethodModel.Password
42 Password -> Pair(passwordDefaultMessage(fpAuthIsAllowed), 0) in defaultMessage()
55 Password -> Pair(R.string.kg_wrong_password_try_again, secondaryMessage) in incorrectSecurityInput()
69 Password -> Pair(primaryMessage, R.string.kg_bio_try_again_or_password) in incorrectFingerprintInput()
84 Password -> Pair(primaryMessage, R.string.kg_bio_try_again_or_password) in incorrectFaceInput()
97 Password -> Pair(passwordDefaultMessage(true), secondaryMsg) in incorrectFaceInputWithFingerprintAllowed()
106 Password -> in authRequiredAfterReboot()
119 Password -> Pair(passwordDefaultMessage(false), secondaryMsg) in authRequiredAfterAdminLockdown()
132 Password -> Pair(passwordDefaultMessage(fpAuthIsAllowed), secondaryMsg) in authRequiredAfterAdaptiveAuthRequest()
142 Password -> in authRequiredAfterUserLockdown()
[all …]
/frameworks/base/packages/SystemUI/shared/biometrics/src/com/android/systemui/biometrics/shared/model/
DPromptKind.kt37 data object Password : PromptKind object
48 fun isCredential() = (this is Pin) || (this is Pattern) || (this is Password)
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/ui/viewmodel/
DBouncerViewModelTest.kt31 import com.android.systemui.authentication.shared.model.AuthenticationMethodModel.Password in <lambda>()
180 kosmos.fakeAuthenticationRepository.setAuthenticationMethod(Password) in <lambda>()
187 kosmos.fakeAuthenticationRepository.setAuthenticationMethod(Password) in <lambda>()
197 kosmos.fakeAuthenticationRepository.setAuthenticationMethod(Password) in <lambda>()
222 return listOf(None, Pin, Password, Pattern, Sim) in <lambda>()
DPasswordBouncerViewModelTest.kt95 assertThat(underTest.authenticationMethod).isEqualTo(AuthenticationMethodModel.Password) in onShown()
153 AuthenticationMethodModel.Password in onAuthenticateKeyPressed_whenEmpty()
328 AuthenticationMethodModel.Password in lockDeviceAndOpenPasswordBouncer()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractorTest.kt29 import com.android.systemui.authentication.shared.model.AuthenticationMethodModel.Password in <lambda>()
71 kosmos.fakeAuthenticationRepository.setAuthenticationMethod(Password) in <lambda>()
73 assertThat(authMethod).isEqualTo(Password) in <lambda>()
74 assertThat(underTest.getAuthenticationMethod()).isEqualTo(Password) in <lambda>()
141 kosmos.fakeAuthenticationRepository.setAuthenticationMethod(Password) in <lambda>()
149 kosmos.fakeAuthenticationRepository.setAuthenticationMethod(Password) in <lambda>()
282 kosmos.fakeAuthenticationRepository.setAuthenticationMethod(Password) in <lambda>()
540 kosmos.fakeAuthenticationRepository.setAuthenticationMethod(Password) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityModel.java42 Password, // Unlock by entering an alphanumeric password enumConstant
86 return SecurityMode.Password; in getSecurityMode()
DKeyguardSecurityViewFlipperController.java160 case Password: return R.layout.keyguard_password_motion_layout; in getLayoutIdFor()
172 case Password: return R.layout.keyguard_password_view; in getLegacyLayoutIdFor()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/domain/interactor/
DPromptCredentialInteractor.kt97 PromptKind.Password -> in <lambda>()
98 BiometricPromptRequest.Credential.Password( in <lambda>()
154 is BiometricPromptRequest.Credential.Password -> in <lambda>()
DCredentialInteractor.kt216 is BiometricPromptRequest.Credential.Password -> in Context()
232 is BiometricPromptRequest.Credential.Password -> in Context()
242 is BiometricPromptRequest.Credential.Password -> in Context()
260 is BiometricPromptRequest.Credential.Password -> in Context()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/domain/interactor/
DPromptSelectorInteractorImplTest.kt198 assertThat(credentialKind).isSameInstanceAs(PromptKind.Password) in <lambda>()
219 testScope.runTest { useCredentialAndReset(PromptKind.Password) } in <lambda>()
283 assertThat(promptKind).isEqualTo(PromptKind.Password) in <lambda>()
304 assertThat(promptKind).isEqualTo(PromptKind.Password) in <lambda>()
329 assertThat(promptKind).isEqualTo(PromptKind.Password) in <lambda>()
379 isPassword = kind == PromptKind.Password, in <lambda>()
DPromptCredentialInteractorTest.kt180 @Test fun usePasswordCredentialForPrompt() = useCredentialForPrompt(PromptKind.Password) in <lambda>()
220 PromptKind.Password -> in <lambda>()
221 BiometricPromptRequest.Credential.Password::class.java in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/shared/model/
DAuthenticationMethodModel.kt37 data object Password : AuthenticationMethodModel(isSecure = true) object in com.android.systemui.authentication.shared.model.AuthenticationMethodModel
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/
DFakeAuthenticationRepository.kt214 is AuthenticationMethodModel.Password -> SecurityMode.Password in <lambda>()
229 SecurityMode.Password -> LockPatternUtils.CREDENTIAL_TYPE_PASSWORD in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractor.kt26 import com.android.systemui.authentication.shared.model.AuthenticationMethodModel.Password in <lambda>()
280 Password -> inputLength < repository.minPasswordLength in <lambda>()
317 is Password -> LockscreenCredential.createPassword(input.joinToString("")) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepository.kt30 import com.android.systemui.authentication.shared.model.AuthenticationMethodModel.Password in <lambda>()
375 KeyguardSecurityModel.SecurityMode.Password -> Password in getAuthenticationMethod()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DBouncerInteractor.kt24 import com.android.systemui.authentication.shared.model.AuthenticationMethodModel.Password in <lambda>()
177 if (authenticationInteractor.getAuthenticationMethod() in setOf(Pin, Password, Pattern)) { in <lambda>()
/frameworks/base/packages/SystemUI/shared/biometrics/src/com/android/systemui/biometrics/
DUtils.kt100 PASSWORD_QUALITY_MANAGED -> PromptKind.Password in isDeviceCredentialAllowed()
101 else -> PromptKind.Password in isDeviceCredentialAllowed()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ui/viewmodel/
DCredentialViewModelTest.kt49 @Test fun setsPasswordInputFlags() = setsInputFlags(PromptKind.Password, expectFlags = false) in <lambda>()
67 fun isStealthIgnoredByPassword() = isStealthMode(PromptKind.Password, expectStealth = false) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/viewmodel/
DCredentialViewModel.kt166 if (prompt != null) prompt::class else BiometricPromptRequest.Credential.Password::class in Context()
175 BiometricPromptRequest.Credential.Password::class -> in Context()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/domain/model/
DBiometricPromptRequest.kt75 class Password( class
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/deviceentry/domain/interactor/
DDeviceEntryInteractorTest.kt242 AuthenticationMethodModel.Password in <lambda>()
259 AuthenticationMethodModel.Password in <lambda>()
276 AuthenticationMethodModel.Password in <lambda>()
301 AuthenticationMethodModel.Password in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/keyguard/
DKeyguardSecurityContainerControllerTest.kt225 SecurityMode.Password, in <lambda>()
438 setupGetSecurityView(SecurityMode.Password) in <lambda>()
453 setupGetSecurityView(SecurityMode.Password) in <lambda>()
580 .thenReturn(SecurityMode.Password) in <lambda>()
593 .getSecurityView(eq(SecurityMode.Password), any(), any()) in <lambda>()
624 setupGetSecurityView(SecurityMode.Password) in <lambda>()
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/editor/
DSettingsTextFieldPassword.kt61 keyboardType = KeyboardType.Password, in SettingsTextFieldPassword()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/
DPasswordBouncerViewModel.kt58 override val authenticationMethod = AuthenticationMethodModel.Password in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/
DStatusBarStateControllerImplTest.kt244 AuthenticationMethodModel.Password in start_hydratesStatusBarState_whileLocked()
308 AuthenticationMethodModel.Password in start_hydratesStatusBarState_whileUnlocked()

12