HomeSort by relevance Sort by last modified time
    Searched defs:rawContactId (Results 1 - 7 of 7) sorted by null

  /cts/tests/tests/provider/src/android/provider/cts/contacts/
RawContactUtil.java 36 public static int update(ContentResolver resolver, long rawContactId,
38 Uri uri = ContentUris.withAppendedId(URI, rawContactId);
44 Long rawContactId = insertRawContact(resolver, account);
45 DataUtil.insertName(resolver, rawContactId, name);
46 return rawContactId;
51 Long rawContactId = insertRawContact(resolver, account);
52 DataUtil.insertAutoGeneratedName(resolver, rawContactId);
53 return rawContactId;
65 long rawContactId, String[] projection) {
66 Uri uri = ContentUris.withAppendedId(URI, rawContactId);
    [all...]
DatabaseAsserts.java 75 long rawContactId = RawContactUtil.createRawContactWithName(resolver, account, name);
77 long contactId = RawContactUtil.queryContactIdByRawContactId(resolver, rawContactId);
80 return new ContactIdPair(contactId, rawContactId);
89 long rawContactId = RawContactUtil.createRawContactWithAutoGeneratedName(resolver, account);
91 long contactId = RawContactUtil.queryContactIdByRawContactId(resolver, rawContactId);
94 return new ContactIdPair(contactId, rawContactId);
121 public ContactIdPair(long contactId, long rawContactId) {
123 this.mRawContactId = rawContactId;
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
RawContact.java 181 long rawContactId, long syncState, boolean dirty) {
194 mRawContactId = rawContactId;
216 final int rawContactId = !contact.isNull("c") ? contact.getInt("c") : -1;
229 serverContactId, rawContactId, syncState, false);
241 String email, String status, boolean deleted, long rawContactId,
244 homePhone, email, status, null, deleted, serverContactId, rawContactId,
255 public static RawContact createDeletedContact(long rawContactId, long serverContactId)
258 null, null, null, true, serverContactId, rawContactId, -1, true);
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
EABDbUtil.java 114 // contactId, rawContactId and dataId.
124 String rawContactId = pCur.getString(pCur.getColumnIndex(
132 + rawContactId + dataId;
138 formattedNumber, rawContactId, contactId, dataId));
140 " Number:" + contactNumber + " RawContactID: " + rawContactId +
193 String phoneNumber, String formattedNumber, String rawContactId, String contactId,
201 .withValue(EABContract.EABColumns.RAW_CONTACT_ID, rawContactId)
300 ArrayList<ContentProviderOperation> ops, String rawContactId, String dataId) {
304 String eabWhereClause = EABContract.EABColumns.RAW_CONTACT_ID + " ='" + rawContactId
    [all...]
EABProvider.java 502 long rawContactId = cursor.getLong(cursor.getColumnIndex(
509 " rawContactId :" + rawContactId + " phoneNumber :" + phoneNumber +
EABService.java 473 Long rawContactId = Long.valueOf(cursor.getLong(cursor.getColumnIndex(
479 logger.debug("dataId : " + dataId + " rawContactId :" + rawContactId +
482 verifyInsertOrUpdateAction(dataId, contactId, rawContactId, phoneNumber,
485 uniqueRawContactIds.add(rawContactId);
486 } else if (!uniqueRawContactIds.contains(rawContactId)) {
487 uniqueRawContactIds.add(rawContactId);
490 logger.debug("uniqueRawContactIds already contains rawContactId : " +
491 rawContactId);
518 Long rawContactId, String phoneNumber, String displayName)
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 130 final long rawContactId;
133 rawContactId = rawContact.getRawContactId();
137 rawContactId = lookupRawContact(resolver, serverContactId);
140 if (rawContactId != 0) {
143 true, true, true, rawContactId, batchOperation);
145 deleteContact(context, rawContactId, batchOperation);
186 final long rawContactId = c.getLong(DirtyQuery.COLUMN_RAW_CONTACT_ID);
197 Log.i(TAG, "Dirty Contact: " + Long.toString(rawContactId));
202 RawContact rawContact = RawContact.createDeletedContact(rawContactId,
206 RawContact rawContact = getRawContact(context, rawContactId);
    [all...]

Completed in 234 milliseconds