Home
last modified time | relevance | path

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

/aosp12/packages/apps/Contacts/src/com/android/contacts/database/
H A DSimContactDaoImpl.java190 final Map<Long, List<SimContact>> rawContactToSimContact = new HashMap<>(); in findAccountsOfExistingSimContacts() local
206 if (!rawContactToSimContact.containsKey(id)) { in findAccountsOfExistingSimContacts()
207 rawContactToSimContact.put(id, new ArrayList<SimContact>()); in findAccountsOfExistingSimContacts()
209 rawContactToSimContact.get(id).add(contact); in findAccountsOfExistingSimContacts()
215 final Cursor accountsCursor = queryAccountsOfRawContacts(rawContactToSimContact.keySet()); in findAccountsOfExistingSimContacts()
223 for (SimContact contact : rawContactToSimContact.get(id)) { in findAccountsOfExistingSimContacts()