Home | History | Annotate | Download | only in provider

Lines Matching refs:FLAGS

149     // Version 8: Add security flags column to accounts table
152 // Version 11: Add content and flags to attachment table
467 + MessageColumns.FLAGS + " integer, "
615 + AccountColumns.FLAGS + " integer, "
673 + HostAuthColumns.FLAGS + " integer, "
706 + MailboxColumns.FLAGS + " integer, "
741 + AttachmentColumns.FLAGS + " integer, "
1173 // Attachment: add content and flags columns
1178 + " add column " + AttachmentColumns.FLAGS + " integer" + ";");
1653 int flags = 0;
1654 if (values.containsKey(Attachment.FLAGS)) {
1655 flags = values.getAsInteger(Attachment.FLAGS);
1658 mAttachmentService.attachmentChanged(getContext(), longId, flags);
2209 if (values.containsKey(Attachment.FLAGS)) {
2210 int flags = values.getAsInteger(Attachment.FLAGS);
2212 Integer.parseInt(id), flags);
2581 new String[] {AccountColumns.ID, AccountColumns.FLAGS, AccountColumns.HOST_AUTH_KEY_RECV};
2610 int flags = accountCursor.getInt(V25_ACCOUNT_FLAGS);
2611 cv.put(AccountColumns.FLAGS, flags | Account.FLAGS_SUPPORTS_SEARCH);
2649 void attachmentChanged(Context context, long id, int flags);
2654 public void attachmentChanged(Context context, long id, int flags) {
2656 AttachmentDownloadService.attachmentChanged(context, id, flags);