Home | History | Annotate | Download | only in adapter

Lines Matching refs:FLAGS

107         MessageColumns.MAILBOX_KEY + "=? AND (" + MessageColumns.FLAGS + "&" +
969 final Integer flags;
975 flags = _flags;
984 int flags = 0;
996 flags = c.getInt(Message.LIST_FLAGS_COLUMN);
1004 changeApplicationDataParser(changes, oldRead, oldFlag, flags, id);
1016 Integer flags = null;
1027 // Clear out the old replied/forward flags and add in the new flag
1028 flags = oldFlags & ~(Message.FLAG_REPLIED_TO | Message.FLAG_FORWARDED);
1031 flags |= Message.FLAG_REPLIED_TO;
1033 flags |= Message.FLAG_FORWARDED;
1042 ((flag != null) && !oldFlag.equals(flag)) || (flags != null)) {
1043 changes.add(new ServerChange(id, read, flag, flags));
1197 if (change.flags != null) {
1198 cv.put(MessageColumns.FLAGS, change.flags);
1439 int flags = c.getInt(Message.LIST_FLAGS_COLUMN);
1440 cv.put(MessageColumns.FLAGS,
1441 flags | EasSyncService.MESSAGE_FLAG_MOVED_MESSAGE);
1504 // Flags are required to have a start date and end date (duplicated)