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

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DEmailContent.java1142 public byte[] mContentBytes; field in class:EmailContent.Attachment
1293 mContentBytes = cursor.getBlob(CONTENT_CONTENT_BYTES_COLUMN);
1313 values.put(AttachmentColumns.CONTENT_BYTES, mContentBytes);
1341 if (mContentBytes == null) {
1344 dest.writeInt(mContentBytes.length);
1345 dest.writeByteArray(mContentBytes);
1368 mContentBytes = null;
1370 mContentBytes = new byte[contentBytesLen];
1371 in.readByteArray(mContentBytes);
1395 + mFlags + ", " + mContentBytes
[all...]

Completed in 55 milliseconds