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

  /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);
ContactAggregator.java     [all...]
ContactsProvider2.java     [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoStoreTest.java 105 long photoFileId = mPhotoStore.insert(new PhotoProcessor(photo, 256, 96));
106 assertTrue(photoFileId != 0);
109 File storedFile = new File(mPhotoStore.get(photoFileId).path);
117 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
133 long photoFileId = mPhotoStore.insert(new PhotoProcessor(photo, 256, 96));
134 PhotoStore.Entry entry = mPhotoStore.get(photoFileId);
137 mPhotoStore.remove(photoFileId);
144 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
160 long photoFileId = mPhotoStore.insert(
163 resourceIdToPhotoMap.put(resourceId, photoFileId);
    [all...]
ContactsProvider2Test.java     [all...]

Completed in 36 milliseconds