Searched defs:periodicSyncs (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java183 final ArrayList<Pair<Bundle, Long>> periodicSyncs; field in class:SyncStorageEngine.AuthorityInfo
193 periodicSyncs = new ArrayList<Pair<Bundle, Long>>();
194 periodicSyncs.add(Pair.create(new Bundle(), DEFAULT_POLL_FREQUENCY_SECONDS));
601 // exist in the periodicSyncs array
603 for (int i = 0, N = authority.periodicSyncs.size(); i < N; i++) {
604 Pair<Bundle, Long> syncInfo = authority.periodicSyncs.get(i);
610 authority.periodicSyncs.set(i, Pair.create(extras, period));
615 // if we added an entry to the periodicSyncs array also add an entry to
618 authority.periodicSyncs.add(Pair.create(extras, period));
620 status.setPeriodicSyncTime(authority.periodicSyncs
[all...]

Completed in 8 milliseconds