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.java75 final long a1id = mDbHelper.getOrCreateAccountIdInTransaction(a1); in testGetOrCreateAccountId()
76 final long a2id = mDbHelper.getOrCreateAccountIdInTransaction(a2); in testGetOrCreateAccountId()
77 final long a3id = mDbHelper.getOrCreateAccountIdInTransaction(a3); in testGetOrCreateAccountId()
78 final long a4id = mDbHelper.getOrCreateAccountIdInTransaction(a4); in testGetOrCreateAccountId()
79 final long a5id = mDbHelper.getOrCreateAccountIdInTransaction(a5); in testGetOrCreateAccountId()
97 assertEquals(a1id, mDbHelper.getOrCreateAccountIdInTransaction(a1)); in testGetOrCreateAccountId()
98 assertEquals(a2id, mDbHelper.getOrCreateAccountIdInTransaction(a2)); in testGetOrCreateAccountId()
99 assertEquals(a3id, mDbHelper.getOrCreateAccountIdInTransaction(a3)); in testGetOrCreateAccountId()
100 assertEquals(a4id, mDbHelper.getOrCreateAccountIdInTransaction(a4)); in testGetOrCreateAccountId()
101 assertEquals(a5id, mDbHelper.getOrCreateAccountIdInTransaction(a5)); in testGetOrCreateAccountId()
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java4445 final long accountId = dbHelper.getOrCreateAccountIdInTransaction( in updateGroups()
4599 accountId = dbHelper.getOrCreateAccountIdInTransaction(newAccountWithDataSet); in updateRawContact()
10101 final long id = mDbHelper.get().getOrCreateAccountIdInTransaction(account); in replaceAccountInfoByAccountId()
DContactsDatabaseHelper.java4010 public long getOrCreateAccountIdInTransaction(AccountWithDataSet accountWithDataSet) { in getOrCreateAccountIdInTransaction() method in ContactsDatabaseHelper