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

/packages/apps/Contacts/src/com/android/contacts/util/
H A DStreamItemPhotoEntry.java37 public StreamItemPhotoEntry(long id, int sortIndex, long photoFileId, String photoUri, argument
41 mPhotoFileId = photoFileId;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java1899 long photoFileId = c.getLong(RawContactsQuery.PHOTO_FILE_ID);
1907 PhotoEntry photoEntry = getPhotoMetadata(db, photoFileId);
1915 bestPhotoFileId = photoFileId;
2054 long photoFileId = c.getLong(PhotoIdQuery.PHOTO_FILE_ID);
2056 PhotoEntry photoEntry = getPhotoMetadata(db, photoFileId);
2067 bestPhotoFileId = photoFileId;
2130 private PhotoEntry getPhotoMetadata(SQLiteDatabase db, long photoFileId) { argument
2131 if (photoFileId == 0) {
2138 new String[]{String.valueOf(photoFileId)}, null, null, null);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsProvider2.java1720 long photoFileId = c.getLong(1);
1721 usedPhotoFileIds.add(photoFileId);
1722 photoFileIdToDataId.put(photoFileId, dataId);
1743 long photoFileId = c.getLong(2);
1744 usedPhotoFileIds.add(photoFileId);
1745 photoFileIdToStreamItemPhotoId.put(photoFileId, streamItemPhotoId);
2742 long photoFileId = mPhotoStore.get().insert(new PhotoProcessor(photoBytes,
2744 if (photoFileId != 0) {
2745 values.put(StreamItemPhotos.PHOTO_FILE_ID, photoFileId);
7188 long photoFileId
7416 openDisplayPhotoForRead(long photoFileId) argument
[all...]

Completed in 60 milliseconds