Searched refs:streamItemId (Results 1 - 4 of 4) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java4011 long streamItemId = ContentUris.parseId(resultUri);
4014 insertStreamItemPhoto(streamItemId, photo1Values, null);
4017 insertStreamItemPhoto(streamItemId, photo2Values, null);
4155 long streamItemId = c.getLong(0);
4156 streamItemIds.remove(streamItemId);
4213 long streamItemId = 0;
4217 streamItemId = c.getLong(0);
4223 ContentUris.withAppendedId(StreamItems.CONTENT_URI, streamItemId),
4247 long streamItemId = ContentUris.parseId(resultUri);
4249 mResolver.update(ContentUris.withAppendedId(StreamItems.CONTENT_URI, streamItemId), value
[all...]
H A DBaseContactsProvider2Test.java504 protected Uri insertStreamItemPhoto(long streamItemId, ContentValues values, Account account) { argument
508 ContentUris.withAppendedId(StreamItems.CONTENT_URI, streamItemId),
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsProvider2.java1742 long streamItemId = c.getLong(1);
1746 streamItemPhotoIdToStreamItemId.put(streamItemPhotoId, streamItemId);
2701 long streamItemId = mValues.getAsLong(StreamItemPhotos.STREAM_ITEM_ID);
2702 if (streamItemId != 0) {
2703 long rawContactId = lookupRawContactIdForStreamId(streamItemId);
2761 * @param streamItemId The ID of the stream item.
2764 private long lookupRawContactIdForStreamId(long streamItemId) { argument
2769 StreamItems._ID + "=?", new String[]{String.valueOf(streamItemId)},
2831 long streamItemId = c.getLong(0);
2832 if (insertedStreamItemId == streamItemId) {
3632 deleteStreamItem(SQLiteDatabase db, long streamItemId) argument
3644 deleteStreamItemPhotos(long streamItemId) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/model/
H A DContactLoader.java783 long streamItemId = sipCursor.getLong(
785 StreamItemEntry streamItem = streamItemsById.get(streamItemId);

Completed in 211 milliseconds