Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsDatabaseHelperTest.java58 final long a1id = mDbHelper.getOrCreateAccountIdInTransaction(a1); in testGetOrCreateAccountId()
59 final long a2id = mDbHelper.getOrCreateAccountIdInTransaction(a2); in testGetOrCreateAccountId()
60 final long a3id = mDbHelper.getOrCreateAccountIdInTransaction(a3); in testGetOrCreateAccountId()
61 final long a4id = mDbHelper.getOrCreateAccountIdInTransaction(a4); in testGetOrCreateAccountId()
62 final long a5id = mDbHelper.getOrCreateAccountIdInTransaction(a5); in testGetOrCreateAccountId()
80 assertEquals(a1id, mDbHelper.getOrCreateAccountIdInTransaction(a1)); in testGetOrCreateAccountId()
81 assertEquals(a2id, mDbHelper.getOrCreateAccountIdInTransaction(a2)); in testGetOrCreateAccountId()
82 assertEquals(a3id, mDbHelper.getOrCreateAccountIdInTransaction(a3)); in testGetOrCreateAccountId()
83 assertEquals(a4id, mDbHelper.getOrCreateAccountIdInTransaction(a4)); in testGetOrCreateAccountId()
84 assertEquals(a5id, mDbHelper.getOrCreateAccountIdInTransaction(a5)); in testGetOrCreateAccountId()
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java4246 final long accountId = dbHelper.getOrCreateAccountIdInTransaction( in updateGroups()
4369 accountId = dbHelper.getOrCreateAccountIdInTransaction(newAccountWithDataSet); in updateRawContact()
9000 final long id = mDbHelper.get().getOrCreateAccountIdInTransaction(account); in replaceAccountInfoByAccountId()
DContactsDatabaseHelper.java4774 public long getOrCreateAccountIdInTransaction(AccountWithDataSet accountWithDataSet) { in getOrCreateAccountIdInTransaction() method in ContactsDatabaseHelper