Home | History | Annotate | Download | only in content

Lines Matching full:periodicsyncs

198         final ArrayList<Pair<Bundle, Long>> periodicSyncs;
216 periodicSyncs = new ArrayList<Pair<Bundle, Long>>();
217 for (Pair<Bundle, Long> sync : toCopy.periodicSyncs) {
219 periodicSyncs.add(Pair.create(new Bundle(sync.first), sync.second));
232 periodicSyncs = new ArrayList<Pair<Bundle, Long>>();
233 periodicSyncs.add(Pair.create(new Bundle(), DEFAULT_POLL_FREQUENCY_SECONDS));
684 // exist in the periodicSyncs array
686 for (int i = 0, N = authority.periodicSyncs.size(); i < N; i++) {
687 Pair<Bundle, Long> syncInfo = authority.periodicSyncs.get(i);
693 authority.periodicSyncs.set(i, Pair.create(extras, period));
698 // if we added an entry to the periodicSyncs array also add an entry to
701 authority.periodicSyncs.add(Pair.create(extras, period));
703 status.setPeriodicSyncTime(authority.periodicSyncs.size() - 1, 0);
709 Iterator<Pair<Bundle, Long>> iterator = authority.periodicSyncs.iterator();
716 // if we removed an entry from the periodicSyncs array also
756 for (Pair<Bundle, Long> item : authority.periodicSyncs) {
1665 authority.periodicSyncs.clear();
1701 authority.periodicSyncs.add(periodicSync);
1781 for (Pair<Bundle, Long> periodicSync : authority.periodicSyncs) {