Home | History | Annotate | Download | only in provider

Lines Matching refs:personId

444          * @param personId the person who was contacted
448 public static void markAsContacted(ContentResolver resolver, long personId
449 Uri uri = ContentUris.withAppendedId(CONTENT_URI, personId);
482 * @param personId the person to add to the group
488 public static Uri addToMyContactsGroup(ContentResolver resolver, long personId) {
494 return addToGroup(resolver, personId, groupId);
501 * @param personId the person to add to the group
508 public static Uri addToGroup(ContentResolver resolver, long personId, String groupName) {
526 return addToGroup(resolver, personId, groupId);
533 * @param personId the person to add to the group
539 public static Uri addToGroup(ContentResolver resolver, long personId, long groupId) {
541 values.put(GroupMembership.PERSON_ID, personId);