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.java86 protected final SparseIntArray mStrongAuthForUser = new SparseIntArray(); field in LockSettingsStrongAuth
164 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()
192 for (int i = 0; i < mStrongAuthForUser.size(); i++) { in handleRequireStrongAuth()
193 int key = mStrongAuthForUser.keyAt(i); in handleRequireStrongAuth()
202 int oldValue = mStrongAuthForUser.get(userId, mDefaultStrongAuthFlags); in handleRequireStrongAuthOneUser()
207 mStrongAuthForUser.put(userId, newValue); in handleRequireStrongAuthOneUser()
214 for (int i = 0; i < mStrongAuthForUser.size(); i++) { in handleNoLongerRequireStrongAuth()
215 int key = mStrongAuthForUser.keyAt(i); in handleNoLongerRequireStrongAuth()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
DLockSettingsStrongAuthTest.java246 final int flags = mStrongAuth.mStrongAuthForUser.get(userId, mDefaultStrongAuthFlags); in verifyStrongAuthFlags()