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 183 final ArrayList<Pair<Bundle, Long>> periodicSyncs;
193 periodicSyncs = new ArrayList<Pair<Bundle, Long>>();
194 periodicSyncs.add(Pair.create(new Bundle(), DEFAULT_POLL_FREQUENCY_SECONDS));
571 // exist in the periodicSyncs array
573 for (int i = 0, N = authority.periodicSyncs.size(); i < N; i++) {
574 Pair<Bundle, Long> syncInfo = authority.periodicSyncs.get(i);
580 authority.periodicSyncs.set(i, Pair.create(extras, period));
585 // if we added an entry to the periodicSyncs array also add an entry to
588 authority.periodicSyncs.add(Pair.create(extras, period));
590 status.setPeriodicSyncTime(authority.periodicSyncs.size() - 1, 0)
    [all...]
SyncManager.java     [all...]

Completed in 62 milliseconds