Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DTransactionContext.java36 private ArrayMap<Long, Long> mInsertedRawContactsAccounts; field in TransactionContext
58 if (mInsertedRawContactsAccounts == null) mInsertedRawContactsAccounts = new ArrayMap<>(); in rawContactInserted()
59 mInsertedRawContactsAccounts.put(rawContactId, accountId); in rawContactInserted()
103 if (mInsertedRawContactsAccounts == null) mInsertedRawContactsAccounts = new ArrayMap<>(); in getInsertedRawContactIds()
104 return mInsertedRawContactsAccounts.keySet(); in getInsertedRawContactIds()
138 if (mInsertedRawContactsAccounts == null) mInsertedRawContactsAccounts = new ArrayMap<>(); in getAccountIdOrNullForRawContact()
139 return mInsertedRawContactsAccounts.get(rawContactId); in getAccountIdOrNullForRawContact()
143 if (mInsertedRawContactsAccounts == null) mInsertedRawContactsAccounts = new ArrayMap<>(); in isNewRawContact()
144 return mInsertedRawContactsAccounts.containsKey(rawContactId); in isNewRawContact()
148 mInsertedRawContactsAccounts = null; in clearExceptSearchIndexUpdates()