Home | History | Annotate | Download | only in exchange

Lines Matching defs:cols

89             String[] cols = getRowColumns(Message.CONTENT_URI, msgId, MessageColumns.FLAGS,
91 int flags = Integer.parseInt(cols[0]);
92 String subject = cols[1];
101 cols = getRowColumns(Body.CONTENT_URI, BODY_SOURCE_PROJECTION,
103 if (cols != null) {
104 long refId = Long.parseLong(cols[0]);
106 cols = getRowColumns(Message.CONTENT_URI, refId, SyncColumns.SERVER_ID,
108 if (cols != null) {
109 itemId = cols[0];
110 long boxId = Long.parseLong(cols[1]);
112 cols = getRowColumns(Mailbox.CONTENT_URI, boxId, MailboxColumns.SERVER_ID);
113 if (cols != null) {
114 collectionId = cols[0];