Home
last modified time | relevance | path

Searched refs:DefaultImpl (Results 1 – 10 of 10) sorted by relevance

/packages/services/Car/service/src/com/android/car/systeminterface/
DSystemInterface.java212 builder.withActivityManagerInterface(new ActivityManagerInterface.DefaultImpl(context)); in defaultSystemInterface()
213 builder.withWakeLockInterface(new WakeLockInterface.DefaultImpl(context)); in defaultSystemInterface()
214 builder.withDisplayInterface(new DisplayInterface.DefaultImpl(context, in defaultSystemInterface()
216 builder.withIOInterface(new IOInterface.DefaultImpl(context)); in defaultSystemInterface()
217 builder.withStorageMonitoringInterface(new StorageMonitoringInterface.DefaultImpl()); in defaultSystemInterface()
218 builder.withSystemStateInterface(new SystemStateInterface.DefaultImpl(context)); in defaultSystemInterface()
219 return builder.withTimeInterface(new TimeInterface.DefaultImpl()); in defaultSystemInterface()
DIOInterface.java34 class DefaultImpl implements IOInterface { class
37 DefaultImpl(Context context) { in DefaultImpl() method in IOInterface.DefaultImpl
DActivityManagerInterface.java36 class DefaultImpl implements ActivityManagerInterface { class
39 DefaultImpl(Context context) { in DefaultImpl() method in ActivityManagerInterface.DefaultImpl
DWakeLockInterface.java32 class DefaultImpl implements WakeLockInterface { class
36 DefaultImpl(Context context) { in DefaultImpl() method in WakeLockInterface.DefaultImpl
DSystemStateInterface.java79 class DefaultImpl implements SystemStateInterface { class
103 public DefaultImpl(Context context) { in DefaultImpl() method in SystemStateInterface.DefaultImpl
DDisplayInterface.java68 class DefaultImpl implements DisplayInterface { class
120 DefaultImpl(Context context, WakeLockInterface wakeLockInterface) { in DefaultImpl() method in DisplayInterface.DefaultImpl
DStorageMonitoringInterface.java48 class DefaultImpl implements StorageMonitoringInterface {} class
DTimeInterface.java47 class DefaultImpl implements TimeInterface { class
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DSystemStateInterfaceTest.java46 private SystemStateInterface.DefaultImpl mSystemStateInterface;
53 mSystemStateInterface = new SystemStateInterface.DefaultImpl(mMockContext); in setUp()
/packages/services/Car/service/src/com/android/car/
DUptimeTracker.java98 this(file, snapshotInterval, new TimeInterface.DefaultImpl()); in UptimeTracker()