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

  /frameworks/base/core/java/android/content/
SyncStorageEngine.java 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))
    [all...]
SyncManager.java     [all...]

Completed in 88 milliseconds