Home
last modified time | relevance | path

Searched refs:authResult (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DBouncerInteractor.kt165 val authResult = in <lambda>() constant
171 authResult == AuthenticationResult.FAILED || in <lambda>()
172 (authResult == AuthenticationResult.SKIPPED && !tryAutoConfirm) in <lambda>()
178 if (authResult == AuthenticationResult.SUCCEEDED) { in <lambda>()
180 } else if (authResult == AuthenticationResult.FAILED) { in <lambda>()
188 return authResult in <lambda>()
/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/
DCredentialSelectorViewModel.kt241 authResult: BiometricPrompt.AuthenticationResult? = null, in getFlowOnEntrySelected()
255 biometricState = if (authResult == null && authError == null) in getFlowOnEntrySelected()
256 uiState.biometricState else if (authResult != null) uiState in getFlowOnEntrySelected()
258 biometricAuthenticationResult = authResult)) else uiState in getFlowOnEntrySelected()
396 authResult: AuthenticationResult? = null, in createFlowOnEntrySelected()
415 biometricState = if (authResult == null && authError == null) in createFlowOnEntrySelected()
416 uiState.biometricState else if (authResult != null) uiState in createFlowOnEntrySelected()
418 biometricAuthenticationResult = authResult)) else uiState in createFlowOnEntrySelected()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/ui/viewmodel/
DPatternBouncerViewModelTest.kt110 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in <lambda>() constant
140 assertThat(authResult).isTrue() in <lambda>()
328 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in <lambda>() constant
338 assertThat(authResult).isFalse() in <lambda>()
345 assertThat(authResult).isTrue() in <lambda>()
DPinBouncerViewModelTest.kt207 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in <lambda>() constant
214 assertThat(authResult).isTrue() in <lambda>()
239 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in <lambda>() constant
250 assertThat(authResult).isFalse() in <lambda>()
257 assertThat(authResult).isTrue() in <lambda>()
271 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in <lambda>() constant
276 assertThat(authResult).isTrue() in <lambda>()
DPasswordBouncerViewModelTest.kt127 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in onAuthenticateKeyPressed_whenCorrect() constant
133 assertThat(authResult).isTrue() in onAuthenticateKeyPressed_whenCorrect()
167 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in onAuthenticateKeyPressed_correctAfterWrong() constant
175 assertThat(authResult).isFalse() in onAuthenticateKeyPressed_correctAfterWrong()
182 assertThat(authResult).isTrue() in onAuthenticateKeyPressed_correctAfterWrong()
/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/common/
DBiometricHandler.kt354 authResult: BiometricPrompt.AuthenticationResult? in setupBiometricAuthenticationCallback()
356 super.onAuthenticationSucceeded(authResult) in setupBiometricAuthenticationCallback()
358 if (authResult != null) { in setupBiometricAuthenticationCallback()
360 sendDataToProvider(selectedEntry, authResult, /*authError=*/null) in setupBiometricAuthenticationCallback()
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java1903 AuthenticationResult authResult = mSpManager.unlockLskfBasedProtector( in setLockCredentialInternal() local
1905 VerifyCredentialResponse response = authResult.gkResponse; in setLockCredentialInternal()
1906 SyntheticPassword sp = authResult.syntheticPassword; in setLockCredentialInternal()
2099 AuthenticationResult authResult = mSpManager.unlockWeakTokenBasedProtector( in isWeakEscrowTokenValid() local
2101 if (authResult.syntheticPassword == null) { in isWeakEscrowTokenValid()
2385 final AuthenticationResult authResult; in doVerifyCredential() local
2400 authResult = mSpManager.unlockLskfBasedProtector( in doVerifyCredential()
2402 response = authResult.gkResponse; in doVerifyCredential()
2413 authResult.syntheticPassword.deriveGkPassword()); in doVerifyCredential()
2418 onCredentialVerified(authResult.syntheticPassword, in doVerifyCredential()
[all …]