Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/locksettings/
DUnifiedProfilePasswordCache.java67 private final SparseArray<byte[]> mEncryptedPasswords = new SparseArray<>(); field in UnifiedProfilePasswordCache
82 synchronized (mEncryptedPasswords) { in storePassword()
83 if (mEncryptedPasswords.contains(userId)) { in storePassword()
115 mEncryptedPasswords.put(userId, block); in storePassword()
126 synchronized (mEncryptedPasswords) { in retrievePassword()
127 byte[] block = mEncryptedPasswords.get(userId); in retrievePassword()
164 synchronized (mEncryptedPasswords) { in removePassword()
177 if (mEncryptedPasswords.contains(userId)) { in removePassword()
178 Arrays.fill(mEncryptedPasswords.get(userId), (byte) 0); in removePassword()
179 mEncryptedPasswords.remove(userId); in removePassword()