Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/systeminterface/
DSystemInterface.java262 builder.withActivityManagerInterface(new ActivityManagerInterface.DefaultImpl(context)); in defaultSystemInterface()
263 builder.withWakeLockInterface(new WakeLockInterface.DefaultImpl(context)); in defaultSystemInterface()
264 builder.withDisplayInterface(new DisplayInterface.DefaultImpl(context, in defaultSystemInterface()
266 builder.withIOInterface(new IOInterface.DefaultImpl()); in defaultSystemInterface()
267 builder.withStorageMonitoringInterface(new StorageMonitoringInterface.DefaultImpl()); in defaultSystemInterface()
268 builder.withSystemStateInterface(new SystemStateInterface.DefaultImpl(context)); in defaultSystemInterface()
269 return builder.withTimeInterface(new TimeInterface.DefaultImpl()); in defaultSystemInterface()
DIOInterface.java32 class DefaultImpl implements IOInterface { class
35 DefaultImpl() { in DefaultImpl() method in IOInterface.DefaultImpl
DActivityManagerInterface.java36 class DefaultImpl implements ActivityManagerInterface { class
39 DefaultImpl(Context context) { in DefaultImpl() method in ActivityManagerInterface.DefaultImpl
DWakeLockInterface.java59 class DefaultImpl implements WakeLockInterface { class
68 DefaultImpl(Context context) { in DefaultImpl() method in WakeLockInterface.DefaultImpl
DSystemStateInterface.java123 class DefaultImpl implements SystemStateInterface { class
186 public DefaultImpl(Context context) { in DefaultImpl() method in SystemStateInterface.DefaultImpl
DStorageMonitoringInterface.java56 class DefaultImpl implements StorageMonitoringInterface {} class
DTimeInterface.java47 class DefaultImpl implements TimeInterface { class
DDisplayInterface.java143 class DefaultImpl implements DisplayInterface { class
199 DefaultImpl(Context context, WakeLockInterface wakeLockInterface) { in DefaultImpl() method in DisplayInterface.DefaultImpl
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/systeminterface/
DSystemStateInterfaceTest.java19 import static com.android.car.systeminterface.SystemStateInterface.DefaultImpl.getRandomizedDelay;
65 private SystemStateInterface.DefaultImpl mSystemStateInterface;
73 mSystemStateInterface = new SystemStateInterface.DefaultImpl(mMockContext); in setUp()
DDisplayInterfaceTest.java78 private DisplayInterface.DefaultImpl mDisplayInterface;
148 mDisplayInterface = new DisplayInterface.DefaultImpl(mContext, mWakeLockInterface) { in createDisplayInterface()
/packages/services/Car/service/src/com/android/car/
DUptimeTracker.java97 this(file, snapshotInterval, new TimeInterface.DefaultImpl()); in UptimeTracker()