/frameworks/base/core/java/android/hardware/biometrics/events/ |
D | AuthenticationErrorInfo.java | 83 @Nullable String errString, in AuthenticationErrorInfo() argument 91 this.mErrString = errString; in AuthenticationErrorInfo() 194 String errString = (flg & 0x4) == 0 ? null : in.readString(); in AuthenticationErrorInfo() local 203 this.mErrString = errString; in AuthenticationErrorInfo() 255 @Nullable String errString, in Builder() argument 263 mErrString = errString; in Builder()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | KeyguardIndicationController.java | 1430 public void onBiometricError(int msgId, String errString, in onBiometricError() argument 1433 onFaceAuthError(msgId, errString); in onBiometricError() 1435 onFingerprintAuthError(msgId, errString); in onBiometricError() 1439 private void onFaceAuthError(int msgId, String errString) { in onFaceAuthError() argument 1443 mKeyguardLogger.logBiometricMessage("KIC suppressingFaceError", msgId, errString); in onFaceAuthError() 1449 handleFaceLockoutError(errString); in onFaceAuthError() 1451 showErrorMessageNowOrLater(errString, null, FACE); in onFaceAuthError() 1455 private void onFingerprintAuthError(int msgId, String errString) { in onFingerprintAuthError() argument 1459 errString); in onFingerprintAuthError() 1461 showErrorMessageNowOrLater(errString, null, FINGERPRINT); in onFingerprintAuthError() [all …]
|
/frameworks/base/core/tests/coretests/src/android/hardware/biometrics/ |
D | BiometricPromptTest.java | 93 public void onAuthenticationError(int errorCode, CharSequence errString) { in testCancellationAfterAuthenticationFailed() 94 super.onAuthenticationError(errorCode, errString); in testCancellationAfterAuthenticationFailed()
|
/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/common/ |
D | BiometricHandler.kt | 376 override fun onAuthenticationError(errorCode: Int, errString: CharSequence?) { in setupBiometricAuthenticationCallback() 377 super.onAuthenticationError(errorCode, errString) in setupBiometricAuthenticationCallback() 378 Log.d(TAG, "Authentication error-ed out: $errorCode and $errString") in setupBiometricAuthenticationCallback() 393 BiometricError(errorCode, errString)) in setupBiometricAuthenticationCallback()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/shared/model/ |
D | AuthenticationState.kt | 66 val errString: String?, constant in com.android.systemui.biometrics.shared.model.AuthenticationState.Error
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
D | BiometricNotificationDialogFactory.java | 136 Fingerprint fingerprint, int errMsgId, CharSequence errString) { in reenrollFingerprint() 177 public void onRemovalError(Face face, int errMsgId, CharSequence errString) { in reenrollFace()
|
D | BiometricNotificationService.java | 110 public void onBiometricError(int msgId, String errString,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/log/ |
D | FaceAuthenticationLogger.kt | 141 errString: CharSequence?, in authenticationError() 150 str1 = "$errString" in authenticationError()
|
/frameworks/base/core/java/android/hardware/biometrics/ |
D | BiometricAuthenticator.java | 216 public void onAuthenticationError(int errorCode, CharSequence errString) {} in onAuthenticationError() argument
|
D | BiometricPrompt.java | 1223 public void onAuthenticationError(int errorCode, CharSequence errString) {} in onAuthenticationError() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/ |
D | DeviceEntryFingerprintAuthRepository.kt | 225 errString: String?, in <lambda>() 232 errString, in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardUpdateMonitorCallback.java | 251 public void onBiometricError(int msgId, String errString, in onBiometricError() argument
|
D | KeyguardUpdateMonitor.java | 1017 private void handleFingerprintError(int msgId, String errString) { in handleFingerprintError() argument 1035 mLogger.logRetryAfterFpErrorWithDelay(msgId, errString, HAL_ERROR_RETRY_TIMEOUT); in handleFingerprintError() 1041 mLogger.logRetryAfterFpErrorWithDelay(msgId, errString, HAL_POWER_PRESS_TIMEOUT); in handleFingerprintError() 1067 mLogger.logFingerprintError(msgId, errString); in handleFingerprintError() 1071 cb.onBiometricError(msgId, errString, FINGERPRINT); in handleFingerprintError() 1236 String errString = originalErrMsg; in handleFaceError() local 1252 errString = mContext.getString(R.string.kg_face_sensor_privacy_enabled); in handleFaceError() 1258 cb.onBiometricError(msgId, errString, in handleFaceError() 1814 public void onAuthenticationError(int errMsgId, CharSequence errString) { 1816 handleFingerprintError(errMsgId, errString.toString());
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | CommandException.java | 153 public CommandException(Error e, String errString) { in CommandException() argument 154 super(errString); in CommandException()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | AdnRecordCache.java | 138 private void sendErrorResponse(Message response, String errString) { in sendErrorResponse() argument 140 Exception e = new RuntimeException(errString); in sendErrorResponse()
|
D | SimPhonebookRecordCache.java | 146 private void sendErrorResponse(Message response, String errString) { in sendErrorResponse() argument 148 Exception e = new RuntimeException(errString); in sendErrorResponse()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/data/repository/ |
D | DeviceEntryFaceAuthRepository.kt | 461 override fun onAuthenticationError(errorCode: Int, errString: CharSequence?) { in onAuthenticationError() 462 val errorStatus = ErrorFaceAuthenticationStatus(errorCode, errString.toString()) in onAuthenticationError() 474 errString, in onAuthenticationError()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/ |
D | KeyguardUpdateMonitorLogger.kt | 273 fun logRetryAfterFpErrorWithDelay(msgId: Int, errString: String?, delay: Int) { in logRetryAfterFpErrorWithDelay() 280 str1 = "$errString" in logRetryAfterFpErrorWithDelay()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/data/repository/ |
D | BiometricStatusRepository.kt | 112 authInfo.errString, in <lambda>()
|
/frameworks/base/core/java/android/hardware/face/ |
D | FaceManager.java | 1062 public void onAuthenticationError(int errorCode, CharSequence errString) { in onAuthenticationError() argument 1132 public void onEnrollmentError(int errMsgId, CharSequence errString) { in onEnrollmentError() argument 1204 public void onRemovalError(Face face, int errMsgId, CharSequence errString) { in onRemovalError() argument
|
/frameworks/base/core/java/android/hardware/fingerprint/ |
D | FingerprintManager.java | 376 public void onAuthenticationError(int errorCode, CharSequence errString) { } in onAuthenticationError() argument 458 public void onEnrollmentError(int errMsgId, CharSequence errString) { } in onEnrollmentError() argument 515 public void onRemovalError(Fingerprint fp, int errMsgId, CharSequence errString) { } in onRemovalError() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | BiometricUnlockController.java | 770 public void onBiometricError(int msgId, String errString, in onBiometricError() argument
|
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/ |
D | FingerprintService.java | 390 public void onAuthenticationError(int errorCode, CharSequence errString) {
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |