Home
last modified time | relevance | path

Searched refs:MESSAGE_KEY (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Email/src/com/android/email/provider/
DEmailProvider.java175 " where " + BodyColumns.MESSAGE_KEY + " in " + "(select " + BodyColumns.MESSAGE_KEY +
180 " where " + BodyColumns.MESSAGE_KEY + '=';
348 " where " + AttachmentColumns.MESSAGE_KEY + "=old." + EmailContent.RECORD_ID + in createMessageTable()
506 + AttachmentColumns.MESSAGE_KEY + " integer, " in createAttachmentTable()
514 db.execSQL(createIndex(Attachment.TABLE_NAME, AttachmentColumns.MESSAGE_KEY)); in createAttachmentTable()
527 + BodyColumns.MESSAGE_KEY + " integer, " in createBodyTable()
536 db.execSQL(createIndex(Body.TABLE_NAME, BodyColumns.MESSAGE_KEY)); in createBodyTable()
859 whereWith(Attachment.MESSAGE_KEY + "=" + id, selection), selectionArgs); in delete()
983 values.put(AttachmentColumns.MESSAGE_KEY, id); in insert()
1088 whereWith(Attachment.MESSAGE_KEY + "=" + id, selection), in query()
DEmailContent.java182 public static final String MESSAGE_KEY = "messageKey"; field
212 RECORD_ID, BodyColumns.MESSAGE_KEY, BodyColumns.HTML_CONTENT, BodyColumns.TEXT_CONTENT,
254 values.put(BodyColumns.MESSAGE_KEY, mMessageKey); in toContentValues()
285 Body.CONTENT_PROJECTION, Body.MESSAGE_KEY + "=?", in restoreBodyWithMessageId()
295 Body.MESSAGE_KEY + "=?", in lookupBodyIdWithMessageId()
313 values.put(BodyColumns.MESSAGE_KEY, messageId); in updateBodyWithMessageId()
325 Body.MESSAGE_KEY + "=?", new String[] {Long.toString(messageId)}, null); in restoreBodySourceKey()
340 Body.MESSAGE_KEY + "=?", new String[] {Long.toString(messageId)}, null); in restoreTextWithMessageId()
773 backValues.put(Body.MESSAGE_KEY, messageBackValue); in addSaveOps()
781 .withValueBackReference(Attachment.MESSAGE_KEY, messageBackValue) in addSaveOps()
[all …]
/packages/apps/Email/src/com/android/exchange/
DEasOutboxService.java54 public static final String WHERE_MESSAGE_KEY = Body.MESSAGE_KEY + "=?";
/packages/apps/Email/tests/src/com/android/email/provider/
DProviderTests.java351 EmailContent.Body.MESSAGE_KEY + "=?", in loadBodyForMessageId()
431 Attachment.MESSAGE_KEY + "=?", in testMessageSave()
471 Attachment.MESSAGE_KEY + "=?", in testMessageSave()
1234 String bodySelection = BodyColumns.MESSAGE_KEY + " IN (?,?)"; in testCascadeMessageDelete()
1235 String attachmentSelection = AttachmentColumns.MESSAGE_KEY + " IN (?,?)"; in testCascadeMessageDelete()
/packages/apps/Email/src/com/android/email/activity/
DMessageView.java103 Body.RECORD_ID, BodyColumns.MESSAGE_KEY,