Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/service/src/com/android/car/
H A DFastPairUtils.java91 int accountKeyCount = sharedPref.getInt(ACCOUNT_KEYS, 0); in readStoredAccountKeys() local
93 for (int i = 1; i <= accountKeyCount; i++) { in readStoredAccountKeys()
102 Log.d(TAG, "Read " + keys.size() + "/" + accountKeyCount + " keys."); in readStoredAccountKeys()
109 int accountKeyCount = keys.size(); in writeStoredAccountKeys() local
111 for (int i = 0; i < accountKeyCount; i++) { in writeStoredAccountKeys()
112 editor.putString("" + accountKeyCount, in writeStoredAccountKeys()
115 editor.putInt(ACCOUNT_KEYS, accountKeyCount); in writeStoredAccountKeys()