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

  /packages/apps/UnifiedEmail/src/com/android/mail/
ContactInfo.java 26 public final byte[] photoBytes;
33 public ContactInfo(Uri contactUri, Integer status, byte[] photoBytes) {
34 this(contactUri, status, photoBytes, null);
41 private ContactInfo(Uri contactUri, Integer status, byte[] photoBytes, Bitmap photo) {
44 this.photoBytes = photoBytes;
SenderInfoLoader.java 179 byte[] photoBytes = cursor.getBlob(PHOTO_PHOTO_COLUMN);
180 if (photoBytes == null) {
190 Bitmap photo = BitmapFactory.decodeByteArray(photoBytes, 0, photoBytes.length);
195 // overwrite existing photoBytes-less result
197 prevResult.contactUri, prevResult.status, photoBytes));
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhotoEditorView.java 105 final byte[] photoBytes = values.getAsByteArray(Photo.PHOTO);
106 if (photoBytes != null) {
107 final Bitmap photo = BitmapFactory.decodeByteArray(photoBytes, 0,
108 photoBytes.length);
  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
MockContactPhotoManager.java 60 public void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForPhoto.java 126 byte[] photoBytes = values.getAsByteArray(Photo.PHOTO);
127 return photoBytes != null && photoBytes.length > 0;
PhotoStore.java 193 byte[] photoBytes = photoProcessor.getDisplayPhotoBytes();
196 fos.write(photoBytes);
203 values.put(PhotoFiles.FILESIZE, photoBytes.length);
ContactsProvider2.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailPhotoSetter.java 54 byte[] photoBytes, boolean expandPhotoOnClick) {
58 mPhotoBytes = photoBytes;
  /frameworks/ex/chips/src/com/android/ex/chips/
BaseRecipientAdapter.java 783 final byte[] photoBytes = mPhotoCacheMap.get(photoThumbnailUri);
784 if (photoBytes != null) {
785 entry.setPhotoBytes(photoBytes);
    [all...]
RecipientEntry.java 220 public synchronized void setPhotoBytes(byte[] photoBytes) {
221 mPhotoBytes = photoBytes;
RecipientEditTextView.java 621 byte[] photoBytes = contact.getPhotoBytes();
624 if (photoBytes == null && contact.getPhotoThumbnailUri() != null) {
628 photoBytes = contact.getPhotoBytes();
632 if (photoBytes != null) {
633 photo = BitmapFactory.decodeByteArray(photoBytes, 0, photoBytes.length);
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardEntryTests.java 264 byte[] photoBytes = new byte[] {1};
265 property.setByteValue(photoBytes);
267 PhotoData photoData = new PhotoData("PNG", photoBytes, false);
  /packages/apps/Contacts/src/com/android/contacts/activities/
PhotoSelectionActivity.java 259 * @param photoBytes The bytes for the current photo (may be null, in which case the default
270 byte[] photoBytes, Rect photoBounds, RawContactDeltaList delta, boolean isProfile,
273 if (photoUri != null && photoBitmap != null && photoBytes != null) {
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
ContactPhotoManager.java 197 // Put all entries into photos map: a mapping of email addresses to photoBytes.
205 new BitmapHolder(info != null ? info.photoBytes : null, -1, -1));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 433 * @param photoBytes The bytes that were parsed to create the bitmap.
435 public abstract void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes);
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntry.java     [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java     [all...]

Completed in 3577 milliseconds