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

  /packages/services/Car/service/src/com/android/car/
UptimeTracker.java 91 private TimeInterface mTimeInterface;
113 mTimeInterface = timeInterface;
114 mLastRealTimeSnapshot = mTimeInterface.getUptime(TimeInterface.EXCLUDE_DEEP_SLEEP_TIME);
117 mTimeInterface.scheduleAction(this::flushSnapshot, snapshotInterval);
122 if (mTimeInterface != null) {
123 mTimeInterface.cancelAllActions();
126 mTimeInterface = null;
138 if (mTimeInterface == null) {
142 mTimeInterface.getUptime(TimeInterface.EXCLUDE_DEEP_SLEEP_TIME)
176 mLastRealTimeSnapshot = mTimeInterface.getUptime
    [all...]
  /packages/services/Car/service/src/com/android/car/systeminterface/
SystemInterface.java 44 private final TimeInterface mTimeInterface;
57 mTimeInterface = timeInterface;
64 public TimeInterface getTimeInterface() { return mTimeInterface; }
92 return mTimeInterface.getUptime();
97 return mTimeInterface.getUptime(includeDeepSleepTime);
102 mTimeInterface.scheduleAction(r, delayMs);
112 mTimeInterface.cancelAllActions();
180 private TimeInterface mTimeInterface;
207 .withTimeInterface(otherBuilder.mTimeInterface)
233 mTimeInterface = timeInterface
    [all...]

Completed in 115 milliseconds