HomeSort by relevance Sort by last modified time
    Searched defs:boxId (Results 1 - 2 of 2) sorted by null

  /packages/apps/Exchange/src/com/android/exchange/eas/
EasOutboxSync.java 372 final long boxId = Long.parseLong(colsMailboxKey[1]);
375 Mailbox.CONTENT_URI, boxId, MailboxColumns.SERVER_ID);
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 288 int boxId;
290 boxId = cursor.getInt(mColumnsMap.mColumnSmsType);
291 // Note that messages from the SIM card all have a boxId of zero.
292 return (boxId == TextBasedSmsColumns.MESSAGE_TYPE_INBOX ||
293 boxId == TextBasedSmsColumns.MESSAGE_TYPE_ALL) ?
296 boxId = cursor.getInt(mColumnsMap.mColumnMmsMessageBox);
297 // Note that messages from the SIM card all have a boxId of zero: Mms.MESSAGE_BOX_ALL
298 return (boxId == Mms.MESSAGE_BOX_INBOX || boxId == Mms.MESSAGE_BOX_ALL) ?

Completed in 426 milliseconds