Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsDatabaseHelperTest.java280 ContentValues rawContactValues = new ContentValues(); in testUpgradeHashId() local
281 rawContactValues.put(ContactsDatabaseHelper.RawContactsColumns.ACCOUNT_ID, accountId); in testUpgradeHashId()
282 final long rawContactId = mDb.insert(Tables.RAW_CONTACTS,null, rawContactValues); in testUpgradeHashId()
318 ContentValues rawContactValues = new ContentValues(); in testUpgradeHashIdForPhoto() local
319 rawContactValues.put(ContactsDatabaseHelper.RawContactsColumns.ACCOUNT_ID, accountId); in testUpgradeHashIdForPhoto()
320 final long rawContactId = mDb.insert(Tables.RAW_CONTACTS,null, rawContactValues); in testUpgradeHashIdForPhoto()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DDataRowHandlerForGroupMembership.java105 ContentValues rawContactValues = new ContentValues(); in updateRawContactsStar() local
106 rawContactValues.put(RawContacts.STARRED, starred ? 1 : 0); in updateRawContactsStar()
107 if (db.update(Tables.RAW_CONTACTS, rawContactValues, SELECTION_RAW_CONTACT_ID, in updateRawContactsStar()