Home
last modified time | relevance | path

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

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DBiometricUnlockController.java187 public final boolean isStrongBiometric; field in BiometricUnlockController.PendingAuthenticated
190 boolean isStrongBiometric) { in PendingAuthenticated() argument
193 this.isStrongBiometric = isStrongBiometric; in PendingAuthenticated()
387 boolean isStrongBiometric) { in onBiometricDetected() argument
398 boolean isStrongBiometric) { in onBiometricAuthenticated() argument
405 isStrongBiometric); in onBiometricAuthenticated()
418 biometricSourceType, isStrongBiometric); in onBiometricAuthenticated()
421 startWakeAndUnlock(biometricSourceType, isStrongBiometric); in onBiometricAuthenticated()
428 boolean isStrongBiometric) { in startWakeAndUnlock() argument
429 int mode = calculateMode(biometricSourceType, isStrongBiometric); in startWakeAndUnlock()
[all …]
DKeyguardBypassController.kt81 val isStrongBiometric: Boolean in <lambda>() constant in com.android.systemui.statusbar.phone.KeyguardBypassController.PendingUnlock
187 isStrongBiometric: Boolean in <lambda>()
192 pendingUnlock = PendingUnlock(biometricSourceType, isStrongBiometric) in <lambda>()
202 pendingUnlock!!.isStrongBiometric)) { in <lambda>()
204 pendingUnlock!!.isStrongBiometric) in <lambda>()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
DClientMonitorCallbackConverter.java73 byte[] token, int userId, boolean isStrongBiometric) throws RemoteException { in onAuthenticationSucceeded() argument
78 isStrongBiometric); in onAuthenticationSucceeded() local
81 isStrongBiometric); in onAuthenticationSucceeded() local
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()
/frameworks/base/core/java/android/hardware/fingerprint/
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
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
DFingerprintManager.java316 boolean isStrongBiometric) { in AuthenticationResult() argument
320 mIsStrongBiometric = isStrongBiometric; in AuthenticationResult()
350 public boolean isStrongBiometric() { in isStrongBiometric() method in FingerprintManager.AuthenticationResult
430 void onFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric); in onFingerprintDetected() argument
1309 private void sendAuthenticatedSucceeded(Fingerprint fp, int userId, boolean isStrongBiometric) { in sendAuthenticatedSucceeded() argument
1312 new AuthenticationResult(mCryptoObject, fp, userId, isStrongBiometric); in sendAuthenticatedSucceeded()
1369 private void sendFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric) { in sendFingerprintDetected() argument
1374 mFingerprintDetectionCallback.onFingerprintDetected(sensorId, userId, isStrongBiometric); in sendFingerprintDetected()
1624 boolean isStrongBiometric) {
1625 mHandler.obtainMessage(MSG_AUTHENTICATION_SUCCEEDED, userId, isStrongBiometric ? 1 : 0,
[all …]
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/aidl/
DFaceDetectClient.java57 boolean isStrongBiometric) { in FaceDetectClient() argument
59 logger, biometricContext, isStrongBiometric, in FaceDetectClient()
69 boolean isStrongBiometric, SensorPrivacyManager sensorPrivacyManager) { in FaceDetectClient() argument
73 mIsStrongBiometric = isStrongBiometric; in FaceDetectClient()
DFaceAuthenticationClient.java80 boolean isStrongBiometric, @NonNull UsageStats usageStats, in FaceAuthenticationClient() argument
85 isStrongBiometric, usageStats, lockoutCache, allowBackgroundAuthentication, in FaceAuthenticationClient()
96 boolean isStrongBiometric, @NonNull UsageStats usageStats, in FaceAuthenticationClient() argument
101 isStrongBiometric, null /* taskStackListener */, lockoutCache, in FaceAuthenticationClient()
DFaceProvider.java387 final boolean isStrongBiometric = Utils.isStrongBiometric(sensorId); in scheduleFaceDetect()
392 mBiometricContext, isStrongBiometric); in scheduleFaceDetect()
411 final boolean isStrongBiometric = Utils.isStrongBiometric(sensorId); in scheduleAuthenticate()
417 mBiometricContext, isStrongBiometric, in scheduleAuthenticate()
DBiometricTestSessionImpl.java79 public void onAuthenticationSucceeded(Face face, int userId, boolean isStrongBiometric) {
84 public void onFaceDetected(int sensorId, int userId, boolean isStrongBiometric) {
/frameworks/base/core/java/android/hardware/face/
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
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
DFaceManager.java103 public void onAuthenticationSucceeded(Face face, int userId, boolean isStrongBiometric) {
105 isStrongBiometric ? 1 : 0, face).sendToTarget();
109 public void onFaceDetected(int sensorId, int userId, boolean isStrongBiometric) {
110 mHandler.obtainMessage(MSG_FACE_DETECTED, sensorId, userId, isStrongBiometric)
864 boolean isStrongBiometric) { in AuthenticationResult() argument
868 mIsStrongBiometric = isStrongBiometric; in AuthenticationResult()
907 public boolean isStrongBiometric() { in isStrongBiometric() method in FaceManager.AuthenticationResult
972 void onFaceDetected(int sensorId, int userId, boolean isStrongBiometric); in onFaceDetected() argument
1244 private void sendFaceDetected(int sensorId, int userId, boolean isStrongBiometric) { in sendFaceDetected() argument
1249 mFaceDetectionCallback.onFaceDetected(sensorId, userId, isStrongBiometric); in sendFaceDetected()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/
DKeyguardUpdateMonitorLogger.kt197 fun logFingerprintSuccess(userId: Int, isStrongBiometric: Boolean) { in logFingerprintSuccess()
203 bool1 = isStrongBiometric in logFingerprintSuccess()
209 fun logFaceDetected(userId: Int, isStrongBiometric: Boolean) { in logFaceDetected()
212 bool1 = isStrongBiometric in logFaceDetected()
216 fun logFingerprintDetected(userId: Int, isStrongBiometric: Boolean) { in logFingerprintDetected()
219 bool1 = isStrongBiometric in logFingerprintDetected()
597 fun logReportSuccessfulBiometricUnlock(isStrongBiometric: Boolean, userId: Int) { in logReportSuccessfulBiometricUnlock()
602 bool1 = isStrongBiometric in logReportSuccessfulBiometricUnlock()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitorCallback.java222 boolean isStrongBiometric) { } in onBiometricAuthenticated() argument
230 boolean isStrongBiometric) { } in onBiometricDetected() argument
DKeyguardUpdateMonitor.java443 BiometricAuthenticated(boolean authenticated, boolean isStrongBiometric) { in BiometricAuthenticated() argument
445 this.mIsStrongBiometric = isStrongBiometric; in BiometricAuthenticated()
829 boolean isStrongBiometric) { in onBiometricDetected() argument
835 cb.onBiometricDetected(userId, biometricSourceType, isStrongBiometric); in onBiometricDetected()
842 protected void onFingerprintAuthenticated(int userId, boolean isStrongBiometric) { in onFingerprintAuthenticated() argument
846 new BiometricAuthenticated(true, isStrongBiometric)); in onFingerprintAuthenticated()
853 mLogger.logFingerprintSuccess(userId, isStrongBiometric); in onFingerprintAuthenticated()
860 isStrongBiometric); in onFingerprintAuthenticated()
871 reportSuccessfulBiometricUnlock(isStrongBiometric, userId); in onFingerprintAuthenticated()
876 private void reportSuccessfulBiometricUnlock(boolean isStrongBiometric, int userId) { in reportSuccessfulBiometricUnlock() argument
[all …]
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/aidl/
DFingerprintDetectClient.java57 @Nullable IUdfpsOverlayController udfpsOverlayController, boolean isStrongBiometric) { in FingerprintDetectClient() argument
61 mIsStrongBiometric = isStrongBiometric; in FingerprintDetectClient()
DBiometricTestSessionImpl.java79 boolean isStrongBiometric) {
84 public void onFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric) {
DFingerprintProvider.java423 final boolean isStrongBiometric = Utils.isStrongBiometric(sensorId); in scheduleFingerDetect()
429 mUdfpsOverlayController, isStrongBiometric); in scheduleFingerDetect()
442 final boolean isStrongBiometric = Utils.isStrongBiometric(sensorId); in scheduleAuthenticate()
448 mBiometricContext, isStrongBiometric, in scheduleAuthenticate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/shared/model/
DFaceAuthenticationModels.kt53 data class DetectionStatus(val sensorId: Int, val userId: Int, val isStrongBiometric: Boolean) constant in com.android.systemui.keyguard.shared.model.DetectionStatus
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/hidl/
DFingerprintDetectClient.java65 @Nullable IUdfpsOverlayController udfpsOverlayController, boolean isStrongBiometric) { in FingerprintDetectClient() argument
70 mIsStrongBiometric = isStrongBiometric; in FingerprintDetectClient()
DBiometricTestSessionImpl.java80 boolean isStrongBiometric) {
85 public void onFingerprintDetected(int sensorId, int userId, boolean isStrongBiometric) {
DFingerprintAuthenticationClient.java74 @NonNull BiometricContext biometricContext, boolean isStrongBiometric, in FingerprintAuthenticationClient() argument
83 isStrongBiometric, taskStackListener, lockoutTracker, allowBackgroundAuthentication, in FingerprintAuthenticationClient()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/hidl/
DBiometricTestSessionImpl.java68 public void onAuthenticationSucceeded(Face face, int userId, boolean isStrongBiometric) {
73 public void onFaceDetected(int sensorId, int userId, boolean isStrongBiometric) {
DFaceAuthenticationClient.java71 boolean isStrongBiometric, @NonNull LockoutTracker lockoutTracker, in FaceAuthenticationClient() argument
76 isStrongBiometric, null /* taskStackListener */, in FaceAuthenticationClient()

12