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 34 public long earliestRunTime;
61 this.earliestRunTime = now;
64 this.earliestRunTime = now + delayInMs;
82 this.earliestRunTime = SystemClock.elapsedRealtime();
101 sb.append(", earliestRunTime " + earliestRunTime);
139 ? earliestRunTime
141 Math.max(earliestRunTime, delayUntil),
SyncQueue.java 77 // update the earliestRunTime of the existing to the new time
88 Math.min(existingOperation.earliestRunTime, operation.earliestRunTime);
89 if (existingOperation.earliestRunTime != newRunTime) {
90 existingOperation.earliestRunTime = newRunTime;

Completed in 946 milliseconds