Home | History | Annotate | Download | only in provider

Lines Matching defs:mailboxIds

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]);