Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsStrongAuth.java83 protected final SparseIntArray mStrongAuthForUser = new SparseIntArray(); field in LockSettingsStrongAuth
161 for (int i = 0; i < mStrongAuthForUser.size(); i++) { in handleAddStrongAuthTracker()
162 int key = mStrongAuthForUser.keyAt(i); in handleAddStrongAuthTracker()
163 int value = mStrongAuthForUser.valueAt(i); in handleAddStrongAuthTracker()
189 for (int i = 0; i < mStrongAuthForUser.size(); i++) { in handleRequireStrongAuth()
190 int key = mStrongAuthForUser.keyAt(i); in handleRequireStrongAuth()
199 int oldValue = mStrongAuthForUser.get(userId, mDefaultStrongAuthFlags); in handleRequireStrongAuthOneUser()
204 mStrongAuthForUser.put(userId, newValue); in handleRequireStrongAuthOneUser()
211 for (int i = 0; i < mStrongAuthForUser.size(); i++) { in handleNoLongerRequireStrongAuth()
212 int key = mStrongAuthForUser.keyAt(i); in handleNoLongerRequireStrongAuth()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
DLockSettingsStrongAuthTest.java241 final int flags = mStrongAuth.mStrongAuthForUser.get(userId, mDefaultStrongAuthFlags); in verifyStrongAuthFlags()