HomeSort by relevance Sort by last modified time
    Searched refs:inbox (Results 1 - 3 of 3) sorted by null

  /packages/apps/Exchange/src/com/android/exchange/adapter/
Search.java 82 // If this isn't an inbox search, then include the collection id
83 Mailbox inbox = Mailbox.restoreMailboxOfType(context, accountId, Mailbox.TYPE_INBOX); local
84 if (inbox == null) return 0;
85 if (searchParams.mMailboxId != inbox.mId) {
86 s.data(Tags.SYNC_COLLECTION_ID, inbox.mServerId);
  /packages/apps/Email/tests/src/com/android/email/
FolderPropertiesTests.java 124 Drawable inbox = fp.getIcon(Mailbox.TYPE_INBOX, -1, 0); local
135 set.add(inbox);
  /packages/apps/Exchange/src/com/android/exchange/
ExchangeService.java 517 // Fixup flags for inbox (should accept moved mail)
518 Mailbox inbox = Mailbox.restoreMailboxOfType(context, account.mId, local
520 if (inbox != null &&
521 ((inbox.mFlags & Mailbox.FLAG_ACCEPTS_MOVED_MAIL) == 0)) {
523 inbox.mFlags | Mailbox.FLAG_ACCEPTS_MOVED_MAIL);
525 ContentUris.withAppendedId(Mailbox.CONTENT_URI, inbox.mId), cv,
    [all...]

Completed in 1559 milliseconds