Lines Matching refs:rawContactId
311 Class<? extends Activity> callbackActivity, String callbackAction, long rawContactId, in createSaveContactIntent() argument
314 bundle.putParcelable(String.valueOf(rawContactId), updatedPhotoPath); in createSaveContactIntent()
403 final long rawContactId = getRawContactId(state, diff, results); in saveContact() local
404 if (rawContactId == -1) { in saveContact()
431 rawContactId); in saveContact()
460 Long rawContactId = state.getRawContactId(i); in saveContact()
461 if (rawContactId != null && rawContactId != -1) { in saveContact()
465 sb.append(rawContactId); in saveContact()
497 long rawContactId = Long.parseLong(key); in saveContact() local
501 if (rawContactId < 0) { in saveContact()
502 rawContactId = insertedRawContactId; in saveContact()
506 if (rawContactId < 0 || !saveUpdatedPhoto(rawContactId, photoUri)) { in saveContact()
529 private boolean saveUpdatedPhoto(long rawContactId, Uri photoUri) { in saveUpdatedPhoto() argument
531 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId), in saveUpdatedPhoto()
772 for (long rawContactId : rawContactsToAdd) { in addMembersToGroup()
782 new String[] { String.valueOf(rawContactId), in addMembersToGroup()
790 insertBuilder.withValue(Data.RAW_CONTACT_ID, rawContactId); in addMembersToGroup()
808 String.valueOf(rawContactId), e); in addMembersToGroup()
813 String.valueOf(rawContactId) + ". Already exists in group " + in addMembersToGroup()
824 for (long rawContactId : rawContactsToRemove) { in removeMembersFromGroup()
830 new String[] { String.valueOf(rawContactId), in removeMembersFromGroup()
1245 long rawContactId = c.getLong(JoinContactQuery._ID); in getRawContactIdsForAggregation() local
1246 rawContactIds[i] = rawContactId; in getRawContactIdsForAggregation()