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

  /packages/apps/Email/provider_src/com/android/email/service/
PopImapSyncAdapterService.java 241 long [] mailboxIds = Mailbox.getMailboxIdsFromBundle(extras);
242 if (mailboxIds == null || mailboxIds.length == 0) {
248 mailboxIds = new long[1];
249 mailboxIds[0] = inboxId;
253 if (mailboxIds != null) {
258 for (long mailboxId : mailboxIds) {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Mailbox.java 91 public static Bundle createSyncBundle(final ArrayList<Long> mailboxIds) {
92 final Bundle bundle = new Bundle(mailboxIds.size() + 1);
93 bundle.putInt(SYNC_EXTRA_MAILBOX_COUNT, mailboxIds.size());
94 for (int i = 0; i < mailboxIds.size(); i++) {
95 bundle.putLong(formatMailboxIdExtra(i), mailboxIds.get(i));
100 public static Bundle createSyncBundle(final long[] mailboxIds) {
101 final Bundle bundle = new Bundle(mailboxIds.length + 1);
102 bundle.putInt(SYNC_EXTRA_MAILBOX_COUNT, mailboxIds.length);
103 for (int i = 0; i < mailboxIds.length; i++) {
104 bundle.putLong(formatMailboxIdExtra(i), mailboxIds[i])
    [all...]

Completed in 43 milliseconds