Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/
H A DManagedProfilePasswordCache.java66 private final SparseArray<byte[]> mEncryptedPasswords = new SparseArray<>(); field in ManagedProfilePasswordCache
81 synchronized (mEncryptedPasswords) { in storePassword()
82 if (mEncryptedPasswords.contains(userId)) { in storePassword()
114 mEncryptedPasswords.put(userId, block); in storePassword()
125 synchronized (mEncryptedPasswords) { in retrievePassword()
126 byte[] block = mEncryptedPasswords.get(userId); in retrievePassword()
162 synchronized (mEncryptedPasswords) { in removePassword()
175 if (mEncryptedPasswords.contains(userId)) { in removePassword()
176 Arrays.fill(mEncryptedPasswords.get(userId), (byte) 0); in removePassword()
177 mEncryptedPasswords.remove(userId); in removePassword()