Searched defs:mHal (Results 1 - 9 of 9) sorted by path

/packages/services/Car/service/src/com/android/car/
H A DCarPowerManagementService.java90 private final PowerHalService mHal; field in class:CarPowerManagementService
117 mHal = powerHal;
127 mHal = null;
141 mHal.setListener(this);
142 if (mHal.isPowerStateSupported()) {
143 mHal.sendBootComplete();
144 PowerState currentState = mHal.getCurrentPowerState();
338 if (mHal.isDeepSleepAllowed() && mSystemInterface.isSystemSupportingDeepSleep() &&
409 mHal.sendSleepEntry();
414 mHal
[all...]
H A DCarPropertyServiceBase.java49 private final PropertyHalServiceBase mHal; field in class:CarPropertyServiceBase
59 mHal = hal;
135 mHal.setListener(this);
173 mHal.setListener(null);
180 return mHal.getPropertyList();
186 return mHal.getProperty(prop, zone);
192 mHal.setProperty(prop);
H A DCarVolumeControllerFactory.java216 private final AudioHalService mHal; field in class:CarVolumeControllerFactory.CarExternalVolumeController
328 mHal.setStreamVolume(stream, volume);
362 mHal = hal;
368 mSupportedAudioContext = mHal.getSupportedAudioVolumeContexts();
369 mHasExternalMemory = mHal.isExternalAudioVolumePersistent();
370 mMasterVolumeOnly = mHal.isAudioVolumeMasterOnly();
379 mHal.setVolumeListener(this);
395 Integer volumeMax = mHal.getStreamMaxVolume(carStream);
433 volume = Integer.valueOf(mHal.getStreamVolume(mMasterVolumeOnly ? 0 :
H A DICarImpl.java53 private final VehicleHal mHal; field in class:ICarImpl
93 mHal = new VehicleHal(vehicle);
96 mHal.getPowerHal(), systemInterface);
97 mCarSensorService = new CarSensorService(serviceContext, mHal.getSensorHal());
100 mCarInputService = new CarInputService(serviceContext, mHal.getInputHal());
103 mCarInfoService = new CarInfoService(serviceContext, mHal.getInfoHal());
105 mCarAudioService = new CarAudioService(serviceContext, mHal.getAudioHal(),
107 mCarCabinService = new CarCabinService(serviceContext, mHal.getCabinHal());
108 mCarHvacService = new CarHvacService(serviceContext, mHal.getHvacHal());
109 mCarRadioService = new CarRadioService(serviceContext, mHal
[all...]
/packages/services/Car/service/src/com/android/car/hal/
H A DInfoHalService.java34 private final VehicleHal mHal; field in class:InfoHalService
38 mHal = hal;
76 value = mHal.get(String.class, prop);
H A DInputHalService.java41 private final VehicleHal mHal; field in class:InputHalService
54 mHal = hal;
65 mHal.subscribeProperty(this, HW_KEY_INPUT);
H A DPowerHalService.java142 private final VehicleHal mHal; field in class:PowerHalService
148 mHal = hal;
205 mHal.set(VehicleProperty.AP_POWER_STATE).to(values);
215 state = mHal.get(int[].class, VehicleProperty.AP_POWER_STATE);
252 mHal.subscribeProperty(this, config.prop);
H A DRadioHalService.java48 private VehicleHal mHal; field in class:RadioHalService
56 mHal = hal;
125 mHal.subscribeProperty(this, VehicleProperty.RADIO_PRESET);
135 mHal.unsubscribeProperty(this, VehicleProperty.RADIO_PRESET);
159 presetConfig = mHal.get(presetNumberValue);
203 mHal.set(VehicleProperty.RADIO_PRESET).to(new int[] {
H A DSensorHalServiceBase.java47 protected final VehicleHal mHal; field in class:SensorHalServiceBase
51 mHal = hal;
117 mHal.subscribeProperty(this, config.prop, fixSamplingRateForProperty(config, rate));
128 mHal.unsubscribeProperty(this, config.prop);
142 return mHal.get(config.prop);

Completed in 91 milliseconds