Home
last modified time | relevance | path

Searched refs:authUserId (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/
DKeyguardUpdateMonitorLogger.kt115 fun logFaceAuthForWrongUser(authUserId: Int) { in logFaceAuthForWrongUser()
119 { int1 = authUserId }, in logFaceAuthForWrongUser()
128 fun logFingerprintAuthForWrongUser(authUserId: Int) { in logFingerprintAuthForWrongUser()
132 { int1 = authUserId }, in logFingerprintAuthForWrongUser()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java942 private void handleBiometricDetected(int authUserId, BiometricSourceType biometricSourceType, in handleBiometricDetected() argument
945 onBiometricDetected(authUserId, biometricSourceType, isStrongBiometric); in handleBiometricDetected()
947 mLogger.logFingerprintDetected(authUserId, isStrongBiometric); in handleBiometricDetected()
949 mLogger.logFaceDetected(authUserId, isStrongBiometric); in handleBiometricDetected()
955 private void handleFingerprintAuthenticated(int authUserId, boolean isStrongBiometric) { in handleFingerprintAuthenticated() argument
964 if (userId != authUserId) { in handleFingerprintAuthenticated()
965 mLogger.logFingerprintAuthForWrongUser(authUserId); in handleFingerprintAuthenticated()
1208 private void handleFaceAuthenticated(int authUserId, boolean isStrongBiometric) { in handleFaceAuthenticated() argument
1215 if (userId != authUserId) { in handleFaceAuthenticated()
1216 mLogger.logFaceAuthForWrongUser(authUserId); in handleFaceAuthenticated()
/frameworks/base/services/core/java/com/android/server/trust/
DTrustManagerService.java1100 int authUserId = mLockPatternUtils.isProfileWithUnifiedChallenge(userId) in notifyKeystoreOfDeviceLockState() local
1103 mKeyStoreAuthorization.onDeviceLocked(userId, getBiometricSids(authUserId), in notifyKeystoreOfDeviceLockState()
1104 isWeakUnlockMethodEnabled(authUserId)); in notifyKeystoreOfDeviceLockState()