Searched refs:mEncryptedPasswords (Results 1 – 1 of 1) sorted by relevance
66 private final SparseArray<byte[]> mEncryptedPasswords = new SparseArray<>(); field in ManagedProfilePasswordCache81 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()