Searched defs:photoFileId (Results 1 - 2 of 2) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DAbstractContactAggregator.java1464 long photoFileId = c.getLong(RawContactsQuery.PHOTO_FILE_ID);
1472 PhotoEntry photoEntry = getPhotoMetadata(db, photoFileId);
1480 bestPhotoFileId = photoFileId;
1628 long photoFileId = c.getLong(PhotoIdQuery.PHOTO_FILE_ID);
1630 PhotoEntry photoEntry = getPhotoMetadata(db, photoFileId);
1641 bestPhotoFileId = photoFileId;
1704 private PhotoEntry getPhotoMetadata(SQLiteDatabase db, long photoFileId) { argument
1705 if (photoFileId == 0) {
1712 new String[]{String.valueOf(photoFileId)}, null, null, null);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsProvider2.java1932 long photoFileId = c.getLong(1);
1933 usedPhotoFileIds.add(photoFileId);
1934 photoFileIdToDataId.put(photoFileId, dataId);
1955 long photoFileId = c.getLong(2);
1956 usedPhotoFileIds.add(photoFileId);
1957 photoFileIdToStreamItemPhotoId.put(photoFileId, streamItemPhotoId);
2962 long photoFileId = mPhotoStore.get().insert(processor, true);
2963 if (photoFileId != 0) {
2964 values.put(StreamItemPhotos.PHOTO_FILE_ID, photoFileId);
7985 long photoFileId
8243 openDisplayPhotoForRead( long photoFileId) argument
[all...]

Completed in 2664 milliseconds