Home
last modified time | relevance | path

Searched refs:mStrongAuthForUser (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/
H A DLockSettingsStrongAuth.java164 for (int i = 0; i < mStrongAuthForUser.size(); i++) { in handleAddStrongAuthTracker()
165 int key = mStrongAuthForUser.keyAt(i); in handleAddStrongAuthTracker()
166 int value = mStrongAuthForUser.valueAt(i); in handleAddStrongAuthTracker()
193 int key = mStrongAuthForUser.keyAt(i); in handleRequireStrongAuth()
207 mStrongAuthForUser.put(userId, newValue); in handleRequireStrongAuthOneUser()
215 int key = mStrongAuthForUser.keyAt(i); in handleNoLongerRequireStrongAuth()
227 mStrongAuthForUser.put(userId, newValue); in handleNoLongerRequireStrongAuthOneUser()
233 int index = mStrongAuthForUser.indexOfKey(userId); in handleRemoveUser()
235 mStrongAuthForUser.removeAt(index); in handleRemoveUser()
641 final int key = mStrongAuthForUser.keyAt(i); in dump()
[all …]
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
H A DLockSettingsStrongAuthTest.java246 final int flags = mStrongAuth.mStrongAuthForUser.get(userId, mDefaultStrongAuthFlags); in verifyStrongAuthFlags()