OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:latestRunTime
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/services/java/com/android/server/content/
SyncOperation.java
73
public long
latestRunTime
;
80
* Depends on max(backoff,
latestRunTime
, and delayUntil).
108
this.
latestRunTime
= now;
113
this.
latestRunTime
= now + runTimeFromNow;
130
this.
latestRunTime
= SystemClock.elapsedRealtime();
181
.append(",
latestRunTime
")
182
.append(
latestRunTime
);
266
* Update the effective run time of this Operation based on
latestRunTime
(specified at
274
latestRunTime
:
275
Math.max(Math.max(
latestRunTime
, delayUntil), backoff)
[
all
...]
SyncQueue.java
107
Math.min(existingOperation.
latestRunTime
, operation.
latestRunTime
);
109
existingOperation.
latestRunTime
= newRunTime;
Completed in 44 milliseconds