HomeSort by relevance Sort by last modified time
    Searched refs:photoFileId (Results 1 - 6 of 6) sorted by null

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoStoreTest.java 130 long photoFileId = mPhotoStore.insert(newPhotoProcessor(photo, false));
131 assertTrue(photoFileId != 0);
133 File storedFile = new File(mPhotoStore.get(photoFileId).path);
144 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
160 long photoFileId = mPhotoStore.insert(newPhotoProcessor(photo, true));
161 assertTrue(photoFileId != 0);
165 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
177 long photoFileId = mPhotoStore.insert(newPhotoProcessor(photo, false));
178 PhotoStore.Entry entry = mPhotoStore.get(photoFileId);
181 mPhotoStore.remove(photoFileId);
    [all...]
ContactsProvider2Test.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
StreamItemPhotoEntry.java 37 public StreamItemPhotoEntry(long id, int sortIndex, long photoFileId, String photoUri,
41 mPhotoFileId = photoFileId;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForPhoto.java 151 long photoFileId = mPhotoStore.insert(processor);
152 if (photoFileId != 0) {
153 values.put(Photo.PHOTO_FILE_ID, photoFileId);
ContactsProvider2.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java     [all...]

Completed in 129 milliseconds