OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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