Home
last modified time | relevance | path

Searched refs:mTimeInterface (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/services/Car/service/src/com/android/car/
H A DUptimeTracker.java90 private TimeInterface mTimeInterface; field in UptimeTracker
112 mTimeInterface = timeInterface; in UptimeTracker()
113 mLastRealTimeSnapshot = mTimeInterface.getUptime(TimeInterface.EXCLUDE_DEEP_SLEEP_TIME); in UptimeTracker()
116 mTimeInterface.scheduleAction(this::flushSnapshot, snapshotInterval); in UptimeTracker()
121 if (mTimeInterface != null) { in onDestroy()
122 mTimeInterface.cancelAllActions(); in onDestroy()
125 mTimeInterface = null; in onDestroy()
137 if (mTimeInterface == null) { in getTotalUptime()
141 mTimeInterface.getUptime(TimeInterface.EXCLUDE_DEEP_SLEEP_TIME) in getTotalUptime()
175 mLastRealTimeSnapshot = mTimeInterface.getUptime( in flushSnapshot()
/aosp12/packages/services/Car/service/src/com/android/car/systeminterface/
H A DSystemInterface.java48 private final TimeInterface mTimeInterface; field in SystemInterface
63 mTimeInterface = timeInterface; in SystemInterface()
73 public TimeInterface getTimeInterface() { return mTimeInterface; } in getTimeInterface()
106 return mTimeInterface.getUptime(); in getUptime()
111 return mTimeInterface.getUptime(includeDeepSleepTime); in getUptime()
116 mTimeInterface.scheduleAction(r, delayMs); in scheduleAction()
126 mTimeInterface.cancelAllActions(); in cancelAllActions()
205 private TimeInterface mTimeInterface; field in SystemInterface.Builder
234 .withTimeInterface(otherBuilder.mTimeInterface) in fromBuilder()
266 mTimeInterface = timeInterface; in withTimeInterface()
[all …]