Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsDatabaseHelperTest.java278 ContentValues rawContactValues = new ContentValues(); in testUpgradeHashId() local
279 rawContactValues.put(ContactsDatabaseHelper.RawContactsColumns.ACCOUNT_ID, accountId); in testUpgradeHashId()
280 final long rawContactId = mDb.insert(Tables.RAW_CONTACTS,null, rawContactValues); in testUpgradeHashId()
316 ContentValues rawContactValues = new ContentValues(); in testUpgradeHashIdForPhoto() local
317 rawContactValues.put(ContactsDatabaseHelper.RawContactsColumns.ACCOUNT_ID, accountId); in testUpgradeHashIdForPhoto()
318 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()
DContactsProvider2.java4938 ContentValues rawContactValues = new ContentValues(); in updateFromMetaDataEntry() local
4939 rawContactValues.put(RawContacts.SEND_TO_VOICEMAIL, metadataEntry.mSendToVoicemail); in updateFromMetaDataEntry()
4940 rawContactValues.put(RawContacts.STARRED, metadataEntry.mStarred); in updateFromMetaDataEntry()
4941 rawContactValues.put(RawContacts.PINNED, metadataEntry.mPinned); in updateFromMetaDataEntry()
4942 updateRawContact(db, rawContactId, rawContactValues, /* callerIsSyncAdapter =*/true, in updateFromMetaDataEntry()