Searched refs:rawContactValues (Results 1 – 3 of 3) sorted by relevance
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactsDatabaseHelperTest.java | 279 ContentValues rawContactValues = new ContentValues(); in testUpgradeHashId() local 280 rawContactValues.put(ContactsDatabaseHelper.RawContactsColumns.ACCOUNT_ID, accountId); in testUpgradeHashId() 281 final long rawContactId = mDb.insert(Tables.RAW_CONTACTS,null, rawContactValues); in testUpgradeHashId() 317 ContentValues rawContactValues = new ContentValues(); in testUpgradeHashIdForPhoto() local 318 rawContactValues.put(ContactsDatabaseHelper.RawContactsColumns.ACCOUNT_ID, accountId); in testUpgradeHashIdForPhoto() 319 final long rawContactId = mDb.insert(Tables.RAW_CONTACTS,null, rawContactValues); in testUpgradeHashIdForPhoto()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | DataRowHandlerForGroupMembership.java | 104 ContentValues rawContactValues = new ContentValues(); in updateRawContactsStar() local 105 rawContactValues.put(RawContacts.STARRED, starred ? 1 : 0); in updateRawContactsStar() 106 if (db.update(Tables.RAW_CONTACTS, rawContactValues, SELECTION_RAW_CONTACT_ID, in updateRawContactsStar()
|
D | ContactsProvider2.java | 5085 ContentValues rawContactValues = new ContentValues(); in updateFromMetaDataEntry() local 5086 rawContactValues.put(RawContacts.SEND_TO_VOICEMAIL, metadataEntry.mSendToVoicemail); in updateFromMetaDataEntry() 5087 rawContactValues.put(RawContacts.STARRED, metadataEntry.mStarred); in updateFromMetaDataEntry() 5088 rawContactValues.put(RawContacts.PINNED, metadataEntry.mPinned); in updateFromMetaDataEntry() 5089 updateRawContact(db, rawContactId, rawContactValues, /* callerIsSyncAdapter =*/true, in updateFromMetaDataEntry()
|