Searched refs:mContentBytes (Results 1 – 6 of 6) sorted by relevance
1366 public byte[] mContentBytes; field in EmailContent.Attachment1556 mContentBytes = cursor.getBlob(CONTENT_CONTENT_BYTES_COLUMN); in restore()1577 values.put(AttachmentColumns.CONTENT_BYTES, mContentBytes); in toContentValues()1606 if (mContentBytes == null) { in writeToParcel()1609 dest.writeInt(mContentBytes.length); in writeToParcel()1610 dest.writeByteArray(mContentBytes); in writeToParcel()1634 mContentBytes = null; in Attachment()1636 mContentBytes = new byte[contentBytesLen]; in Attachment()1637 in.readByteArray(mContentBytes); in Attachment()1661 + mLocation + ", " + mEncoding + ", " + mFlags + ", " + mContentBytes + ", " in toString()
248 att.mContentBytes = Utility.toUtf8("content " + fileName); in setupAttachment()447 expect.mContentBytes, actual.mContentBytes); in assertAttachmentEqual()
150 att.mContentBytes = "__CONTENT__".getBytes("UTF-8"); in testWriteToAlternativePart()195 att.mContentBytes = "<html>Hi</html>".getBytes("UTF-8"); in testWriteToMixedPart()
236 if (attachment.mContentBytes != null) { in writeOneAttachment()237 inStream = new ByteArrayInputStream(attachment.mContentBytes); in writeOneAttachment()
427 if (att.mContentBytes != null) { in makeMessage()430 content = new ByteArrayInputStream(att.mContentBytes); in makeMessage()
651 } else if (attachment.mContentBytes != null) {