Searched refs:rawContactValues (Results 1 – 3 of 3) sorted by relevance
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactsDatabaseHelperTest.java | 264 ContentValues rawContactValues = new ContentValues(); in testUpgradeHashId() local 265 rawContactValues.put(ContactsDatabaseHelper.RawContactsColumns.ACCOUNT_ID, accountId); in testUpgradeHashId() 266 final long rawContactId = mDb.insert(Tables.RAW_CONTACTS,null, rawContactValues); in testUpgradeHashId() 302 ContentValues rawContactValues = new ContentValues(); in testUpgradeHashIdForPhoto() local 303 rawContactValues.put(ContactsDatabaseHelper.RawContactsColumns.ACCOUNT_ID, accountId); in testUpgradeHashIdForPhoto() 304 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 | 5058 ContentValues rawContactValues = new ContentValues(); in updateFromMetaDataEntry() local 5059 rawContactValues.put(RawContacts.SEND_TO_VOICEMAIL, metadataEntry.mSendToVoicemail); in updateFromMetaDataEntry() 5060 rawContactValues.put(RawContacts.STARRED, metadataEntry.mStarred); in updateFromMetaDataEntry() 5061 rawContactValues.put(RawContacts.PINNED, metadataEntry.mPinned); in updateFromMetaDataEntry() 5062 updateRawContact(db, rawContactId, rawContactValues, /* callerIsSyncAdapter =*/true, in updateFromMetaDataEntry()
|