Searched refs:earliestRunTime (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/content/
H A DSyncOperation.java33 public long earliestRunTime; field in class:SyncOperation
54 this.earliestRunTime = now;
57 this.earliestRunTime = now + delayInMs;
74 this.earliestRunTime = SystemClock.elapsedRealtime();
85 sb.append(" when: ").append(earliestRunTime);
115 if (earliestRunTime == other.earliestRunTime) {
118 return (earliestRunTime < other.earliestRunTime) ? -1 : 1;
H A DSyncQueue.java65 // update the earliestRunTime of the existing to the new time
76 Math.min(existingOperation.earliestRunTime, operation.earliestRunTime);
77 if (existingOperation.earliestRunTime != newRunTime) {
78 existingOperation.earliestRunTime = newRunTime;
123 * Find the operation that should run next. Operations are sorted by their earliestRunTime,
126 * The earliestRunTime is adjusted by the sync adapter's backoff and delayUntil times, if any.
135 long opRunTime = op.earliestRunTime;

Completed in 40 milliseconds