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

/packages/apps/UnifiedEmail/src/com/android/mail/
H A DContactInfo.java26 public final byte[] photoBytes; field in class:ContactInfo
33 public ContactInfo(Uri contactUri, Integer status, byte[] photoBytes) { argument
34 this(contactUri, status, photoBytes, null);
41 private ContactInfo(Uri contactUri, Integer status, byte[] photoBytes, Bitmap photo) { argument
44 this.photoBytes = photoBytes;
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDetailPhotoSetter.java55 byte[] photoBytes, boolean expandPhotoOnClick) {
59 mPhotoBytes = photoBytes;
54 PhotoClickListener(Context context, Contact contactData, Bitmap photoBitmap, byte[] photoBytes, boolean expandPhotoOnClick) argument
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
H A DMockContactPhotoManager.java60 public void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) { argument
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DPhotoSelectionActivity.java264 * @param photoBytes The bytes for the current photo (may be null, in which case the default
275 byte[] photoBytes, Rect photoBounds, RawContactDeltaList delta, boolean isProfile,
278 if (photoUri != null && photoBitmap != null && photoBytes != null) {
274 buildIntent(Context context, Uri photoUri, Bitmap photoBitmap, byte[] photoBytes, Rect photoBounds, RawContactDeltaList delta, boolean isProfile, boolean isDirectoryContact, boolean expandPhotoOnClick) argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DContactPhotoManager.java231 * @param photoBytes The bytes that were parsed to create the bitmap.
233 public abstract void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes); argument
780 public void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) { argument
785 BitmapHolder holder = new BitmapHolder(photoBytes, smallerExtent);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java6191 private void writePhotoAsync(final Uri uri, final byte[] photoBytes) throws Exception { argument
6198 os.write(photoBytes);

Completed in 431 milliseconds