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.java35 private HashMap<Long, Long> mInsertedRawContactsAccounts; field in TransactionContext
58 if (mInsertedRawContactsAccounts == null) mInsertedRawContactsAccounts = Maps.newHashMap(); in rawContactInserted()
59 mInsertedRawContactsAccounts.put(rawContactId, accountId); in rawContactInserted()
119 if (mInsertedRawContactsAccounts == null) mInsertedRawContactsAccounts = Maps.newHashMap(); in getInsertedRawContactIds()
120 return mInsertedRawContactsAccounts.keySet(); in getInsertedRawContactIds()
164 if (mInsertedRawContactsAccounts == null) mInsertedRawContactsAccounts = Maps.newHashMap(); in getAccountIdOrNullForRawContact()
165 return mInsertedRawContactsAccounts.get(rawContactId); in getAccountIdOrNullForRawContact()
169 if (mInsertedRawContactsAccounts == null) mInsertedRawContactsAccounts = Maps.newHashMap(); in isNewRawContact()
170 return mInsertedRawContactsAccounts.containsKey(rawContactId); in isNewRawContact()
174 mInsertedRawContactsAccounts = null; in clearExceptSearchIndexUpdates()