Searched defs:photoBytes (Results 1 - 4 of 4) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/
H A DContactInfo.java25 public final byte[] photoBytes; field in class:ContactInfo
32 public ContactInfo(Uri contactUri, byte[] photoBytes) { argument
33 this(contactUri, photoBytes, null);
40 private ContactInfo(Uri contactUri, byte[] photoBytes, Bitmap photo) { argument
42 this.photoBytes = photoBytes;
48 return "{photo=" + (photo != null ? photo : photoBytes) + "}";
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
H A DMockContactPhotoManager.java66 public void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) { argument
/packages/apps/Contacts/src/com/android/contacts/
H A DContactPhotoManager.java557 * @param photoBytes The bytes that were parsed to create the bitmap.
559 public abstract void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes); argument
1221 public void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) { argument
1227 BitmapHolder holder = new BitmapHolder(photoBytes, smallerExtent);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java7662 private void writePhotoAsync(final Uri uri, final byte[] photoBytes) throws Exception { argument
7669 os.write(photoBytes);

Completed in 152 milliseconds