Home
last modified time | relevance | path

Searched refs:isStrongBiometric (Results 1 – 25 of 50) sorted by relevance

12

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DBiometricUnlockController.java190 public final boolean isStrongBiometric; field in BiometricUnlockController.PendingAuthenticated
193 boolean isStrongBiometric) { in PendingAuthenticated() argument
196 this.isStrongBiometric = isStrongBiometric; in PendingAuthenticated()
391 boolean isStrongBiometric) { in onBiometricDetected() argument
402 boolean isStrongBiometric) { in onBiometricAuthenticated() argument
409 isStrongBiometric); in onBiometricAuthenticated()
437 boolean isStrongBiometric) { in startWakeAndUnlock() argument
551 boolean isStrongBiometric) { in calculateMode() argument
554 return calculateModeForPassiveAuth(isStrongBiometric); in calculateMode()
556 return calculateModeForFingerprint(isStrongBiometric); in calculateMode()
[all …]
H A DKeyguardBypassController.kt75 val isStrongBiometric: Boolean
179 isStrongBiometric: Boolean
184 pendingUnlock = PendingUnlock(biometricSourceType, isStrongBiometric)
194 pendingUnlock!!.isStrongBiometric)) {
196 pendingUnlock!!.isStrongBiometric)
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
H A DClientMonitorCallbackConverter.java73 byte[] token, int userId, boolean isStrongBiometric) throws RemoteException { in onAuthenticationSucceeded() argument
78 isStrongBiometric); in onAuthenticationSucceeded()
81 isStrongBiometric); in onAuthenticationSucceeded()
108 public void onDetected(int sensorId, int userId, boolean isStrongBiometric) in onDetected() argument
111 mFaceServiceReceiver.onFaceDetected(sensorId, userId, isStrongBiometric); in onDetected()
113 mFingerprintServiceReceiver.onFingerprintDetected(sensorId, userId, isStrongBiometric); in onDetected()
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/aidl/
H A DFaceDetectClient.java60 boolean isStrongBiometric) { in FaceDetectClient() argument
62 logger, biometricContext, isStrongBiometric, in FaceDetectClient()
72 boolean isStrongBiometric, SensorPrivacyManager sensorPrivacyManager) { in FaceDetectClient() argument
77 mIsStrongBiometric = isStrongBiometric; in FaceDetectClient()
H A DFaceAuthenticationClient.java88 boolean isStrongBiometric, @NonNull UsageStats usageStats, in FaceAuthenticationClient() argument
93 isStrongBiometric, usageStats, lockoutCache, allowBackgroundAuthentication, in FaceAuthenticationClient()
105 boolean isStrongBiometric, @NonNull UsageStats usageStats, in FaceAuthenticationClient() argument
111 isStrongBiometric, null /* taskStackListener */, null /* lockoutCache */, in FaceAuthenticationClient()
H A DFaceProvider.java454 final boolean isStrongBiometric = Utils.isStrongBiometric(sensorId); in scheduleFaceDetect()
460 mBiometricContext, isStrongBiometric); in scheduleFaceDetect()
482 final boolean isStrongBiometric = Utils.isStrongBiometric(sensorId); in scheduleAuthenticate()
489 mBiometricContext, isStrongBiometric, in scheduleAuthenticate()
H A DBiometricTestSessionImpl.java78 public void onAuthenticationSucceeded(Face face, int userId, boolean isStrongBiometric) {
83 public void onFaceDetected(int sensorId, int userId, boolean isStrongBiometric) {
/aosp14/frameworks/base/core/java/android/hardware/fingerprint/
H A DIFingerprintServiceReceiver.aidl27 void onAuthenticationSucceeded(in Fingerprint fp, int userId, boolean isStrongBiometric); in onAuthenticationSucceeded() argument
28 void onFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric); in onFingerprintDetected() argument
H A DFingerprintServiceReceiver.java37 public void onAuthenticationSucceeded(Fingerprint fp, int userId, boolean isStrongBiometric) in onAuthenticationSucceeded() argument
43 public void onFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric) in onFingerprintDetected() argument
H A DFingerprintManager.java337 boolean isStrongBiometric) { in AuthenticationResult() argument
341 mIsStrongBiometric = isStrongBiometric; in AuthenticationResult()
371 public boolean isStrongBiometric() { in isStrongBiometric() method in FingerprintManager.AuthenticationResult
451 void onFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric); in onFingerprintDetected() argument
1425 new AuthenticationResult(mCryptoObject, fp, userId, isStrongBiometric); in sendAuthenticatedSucceeded()
1485 private void sendFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric) { in sendFingerprintDetected() argument
1490 mFingerprintDetectionCallback.onFingerprintDetected(sensorId, userId, isStrongBiometric); in sendFingerprintDetected()
1764 boolean isStrongBiometric) {
1765 mHandler.obtainMessage(MSG_AUTHENTICATION_SUCCEEDED, userId, isStrongBiometric ? 1 : 0,
1770 public void onFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric) {
[all …]
/aosp14/frameworks/base/core/java/android/hardware/face/
H A DIFaceServiceReceiver.aidl29 void onAuthenticationSucceeded(in Face face, int userId, boolean isStrongBiometric); in onAuthenticationSucceeded() argument
30 void onFaceDetected(int sensorId, int userId, boolean isStrongBiometric); in onFaceDetected() argument
H A DFaceServiceReceiver.java37 public void onAuthenticationSucceeded(Face face, int userId, boolean isStrongBiometric) in onAuthenticationSucceeded() argument
43 public void onFaceDetected(int sensorId, int userId, boolean isStrongBiometric) in onFaceDetected() argument
H A DFaceManager.java107 public void onAuthenticationSucceeded(Face face, int userId, boolean isStrongBiometric) {
109 isStrongBiometric ? 1 : 0, face).sendToTarget();
113 public void onFaceDetected(int sensorId, int userId, boolean isStrongBiometric) {
114 mHandler.obtainMessage(MSG_FACE_DETECTED, sensorId, userId, isStrongBiometric)
968 boolean isStrongBiometric) { in AuthenticationResult() argument
972 mIsStrongBiometric = isStrongBiometric; in AuthenticationResult()
1011 public boolean isStrongBiometric() { in isStrongBiometric() method in FaceManager.AuthenticationResult
1076 void onFaceDetected(int sensorId, int userId, boolean isStrongBiometric); in onFaceDetected() argument
1348 private void sendFaceDetected(int sensorId, int userId, boolean isStrongBiometric) { in sendFaceDetected() argument
1353 mFaceDetectionCallback.onFaceDetected(sensorId, userId, isStrongBiometric); in sendFaceDetected()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/
H A DKeyguardUpdateMonitorLogger.kt189 fun logFingerprintSuccess(userId: Int, isStrongBiometric: Boolean) {
195 bool1 = isStrongBiometric
201 fun logFaceDetected(userId: Int, isStrongBiometric: Boolean) {
207 bool1 = isStrongBiometric
213 fun logFingerprintDetected(userId: Int, isStrongBiometric: Boolean) {
219 bool1 = isStrongBiometric
621 fun logReportSuccessfulBiometricUnlock(isStrongBiometric: Boolean, userId: Int) {
626 bool1 = isStrongBiometric
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardUpdateMonitorCallback.java222 boolean isStrongBiometric) { } in onBiometricAuthenticated() argument
230 boolean isStrongBiometric) { } in onBiometricDetected() argument
H A DKeyguardUpdateMonitor.java517 this.mIsStrongBiometric = isStrongBiometric; in BiometricAuthenticated()
930 boolean isStrongBiometric) { in onBiometricDetected() argument
954 mLogger.logFingerprintSuccess(userId, isStrongBiometric); in onFingerprintAuthenticated()
961 isStrongBiometric); in onFingerprintAuthenticated()
972 reportSuccessfulBiometricUnlock(isStrongBiometric, userId); in onFingerprintAuthenticated()
1022 boolean isStrongBiometric) { in handleBiometricDetected() argument
1052 onFingerprintAuthenticated(userId, isStrongBiometric); in handleFingerprintAuthenticated()
1238 isStrongBiometric); in onFaceAuthenticated()
1321 onFaceAuthenticated(userId, isStrongBiometric); in handleFaceAuthenticated()
2007 (sensorId, userId, isStrongBiometric) -> {
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/aidl/
H A DFingerprintDetectClient.java61 boolean isStrongBiometric) { in FingerprintDetectClient() argument
66 mIsStrongBiometric = isStrongBiometric; in FingerprintDetectClient()
H A DBiometricTestSessionImpl.java79 boolean isStrongBiometric) {
84 public void onFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric) {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/shared/model/
H A DFingerprintAuthenticationModels.kt31 val isStrongBiometric: Boolean,
H A DFaceAuthenticationModels.kt92 val isStrongBiometric: Boolean,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
H A DDeviceEntryFingerprintAuthRepository.kt172 isStrongBiometric: Boolean,
179 isStrongBiometric,
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/hidl/
H A DFingerprintDetectClient.java69 boolean isStrongBiometric) { in FingerprintDetectClient() argument
75 mIsStrongBiometric = isStrongBiometric; in FingerprintDetectClient()
H A DBiometricTestSessionImpl.java80 boolean isStrongBiometric) {
85 public void onFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric) {
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/hidl/
H A DBiometricTestSessionImpl.java66 public void onAuthenticationSucceeded(Face face, int userId, boolean isStrongBiometric) {
71 public void onFaceDetected(int sensorId, int userId, boolean isStrongBiometric) {
H A DFaceAuthenticationClient.java76 boolean isStrongBiometric, @NonNull LockoutTracker lockoutTracker, in FaceAuthenticationClient() argument
81 isStrongBiometric, null /* taskStackListener */, in FaceAuthenticationClient()

12