Searched refs:AuthenticatorState (Results 1 – 1 of 1) sorted by relevance
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/ |
H A D | MultiBiometricLockoutState.java | 50 private Map<Integer, AuthenticatorState> createUnlockedMap() { in createUnlockedMap() 51 Map<Integer, AuthenticatorState> lockOutMap = new HashMap<>(); in createUnlockedMap() 53 new AuthenticatorState(BIOMETRIC_STRONG, false, false)); in createUnlockedMap() 55 new AuthenticatorState(BIOMETRIC_WEAK, false, false)); in createUnlockedMap() 57 new AuthenticatorState(BIOMETRIC_CONVENIENCE, false, false)); in createUnlockedMap() 61 private Map<Integer, AuthenticatorState> getAuthMapForUser(int userId) { in getAuthMapForUser() 69 final Map<Integer, AuthenticatorState> authMap = getAuthMapForUser(userId); in setPermanentLockOut() 150 final AuthenticatorState state = authMap.get(strength); in getLockoutState() 164 for (Map.Entry<Integer, Map<Integer, AuthenticatorState>> userState : in toString() 167 final Map<Integer, AuthenticatorState> map = userState.getValue(); in toString() [all …]
|