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

  /frameworks/base/core/java/android/content/
SyncOperation.java 35 public long earliestRunTime;
63 this.earliestRunTime = now;
66 this.earliestRunTime = now + delayInMs;
85 this.earliestRunTime = SystemClock.elapsedRealtime();
104 sb.append(", earliestRunTime " + earliestRunTime);
147 ? earliestRunTime
149 Math.max(earliestRunTime, delayUntil),
SyncQueue.java 78 // update the earliestRunTime of the existing to the new time
89 Math.min(existingOperation.earliestRunTime, operation.earliestRunTime);
90 if (existingOperation.earliestRunTime != newRunTime) {
91 existingOperation.earliestRunTime = newRunTime;

Completed in 34 milliseconds