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

/packages/apps/Email/src/com/android/email/provider/
H A DEmailContent.java1671 public byte[] mContentBytes; field in class:EmailContent.Attachment
1796 mContentBytes = cursor.getBlob(CONTENT_CONTENT_BYTES_COLUMN);
1813 values.put(AttachmentColumns.CONTENT_BYTES, mContentBytes);
1834 if (mContentBytes == null) {
1837 dest.writeInt(mContentBytes.length);
1838 dest.writeByteArray(mContentBytes);
1857 mContentBytes = null;
1859 mContentBytes = new byte[contentBytesLen];
1860 in.readByteArray(mContentBytes);
1879 + mFlags + ", " + mContentBytes
[all...]

Completed in 9 milliseconds