Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/
DCarStorageMonitoringService.java136 public CarStorageMonitoringService(Context context, SystemInterface systemInterface) { in CarStorageMonitoringService() argument
145 mUidIoStatsProvider = systemInterface.getUidIoStatsProvider(); in CarStorageMonitoringService()
146 mUptimeTrackerFile = new File(systemInterface.getSystemCarDir(), UPTIME_TRACKER_FILENAME); in CarStorageMonitoringService()
147 mWearInfoFile = new File(systemInterface.getSystemCarDir(), WEAR_INFO_FILENAME); in CarStorageMonitoringService()
148 mLifetimeWriteFile = new File(systemInterface.getSystemCarDir(), LIFETIME_WRITES_FILENAME); in CarStorageMonitoringService()
150 mSystemInterface = systemInterface; in CarStorageMonitoringService()
151 mWearInformationProviders = systemInterface.getFlashWearInformationProviders(); in CarStorageMonitoringService()
157 systemInterface.scheduleActionForBootCompleted(() -> { in CarStorageMonitoringService()
DUptimeTracker.java100 UptimeTracker(File file, long snapshotInterval, SystemInterface systemInterface) { in UptimeTracker() argument
101 this(file, snapshotInterval, systemInterface.getTimeInterface()); in UptimeTracker()
DICarImpl.java161 public ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface, in ICarImpl() argument
163 this(serviceContext, vehicle, systemInterface, vehicleInterfaceName, in ICarImpl()
169 ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface, in ICarImpl() argument
180 mSystemInterface = systemInterface; in ICarImpl()
240 systemInterface, mCarUserService, powerPolicyDaemon)); in ICarImpl()
310 systemInterface)); in ICarImpl()
DCarLocationService.java488 SystemInterface systemInterface = CarLocalServices.getService(SystemInterface.class); in getLocationCacheFile() local
489 return new File(systemInterface.getSystemCarDir(), FILENAME); in getLocationCacheFile()
DCarUxRestrictionsManagerService.java283 SystemInterface systemInterface = CarLocalServices.getService(SystemInterface.class); in getFile() local
284 return new File(systemInterface.getSystemCarDir(), filename); in getFile()
DCarShellCommand.java378 SystemInterface systemInterface, in CarShellCommand() argument
394 mSystemInterface = systemInterface; in CarShellCommand()
/packages/services/Car/service/src/com/android/car/power/
DPowerComponentHandler.java91 PowerComponentHandler(Context context, SystemInterface systemInterface) { in PowerComponentHandler() argument
92 this(context, systemInterface, /* voiceInteractionService= */ null, in PowerComponentHandler()
93 new AtomicFile(new File(systemInterface.getSystemCarDir(), in PowerComponentHandler()
97 public PowerComponentHandler(Context context, SystemInterface systemInterface, in PowerComponentHandler() argument
102 mSystemInterface = systemInterface; in PowerComponentHandler()
DCarPowerManagementService.java260 SystemInterface systemInterface, CarUserService carUserService, in CarPowerManagementService() argument
262 this(context, context.getResources(), powerHal, systemInterface, UserManager.get(context), in CarPowerManagementService()
264 new PowerComponentHandler(context, systemInterface), in CarPowerManagementService()
271 SystemInterface systemInterface, UserManager userManager, CarUserService carUserService, in CarPowerManagementService() argument
277 mSystemInterface = systemInterface; in CarPowerManagementService()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetObjectsFactory.java75 HeadsetNativeInterface nativeInterface, HeadsetSystemInterface systemInterface) { in makeStateMachine() argument
77 nativeInterface, systemInterface); in makeStateMachine()
DHeadsetStateMachine.java176 HeadsetNativeInterface nativeInterface, HeadsetSystemInterface systemInterface) { in HeadsetStateMachine() argument
185 Objects.requireNonNull(systemInterface, "systemInterface cannot be null"); in HeadsetStateMachine()
203 HeadsetNativeInterface nativeInterface, HeadsetSystemInterface systemInterface) { in make() argument
206 nativeInterface, systemInterface); in make()
/packages/services/Car/service/src/com/android/car/garagemode/
DController.java129 SystemInterface systemInterface = CarLocalServices.getService(SystemInterface.class); in sendBroadcast() local
131 systemInterface.sendBroadcastAsUser(i, UserHandle.ALL); in sendBroadcast()