Home
last modified time | relevance | path

Searched refs:mCarPropertyMgr (Results 1 – 4 of 4) sorted by relevance

/packages/services/Car/car-lib/src/android/car/hardware/hvac/
DCarHvacManager.java50 private final CarPropertyManager mCarPropertyMgr; field in CarHvacManager
315 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarHvacManager()
330 mCarPropertyMgr.registerCallback(mListenerToBase, c.getPropertyId(), 0); in registerCallback()
348 mCarPropertyMgr.unregisterCallback(mListenerToBase, c.getPropertyId()); in unregisterCallback()
355 mCarPropertyMgr.unregisterCallback(mListenerToBase); in unregisterCallback()
366 return mCarPropertyMgr.getPropertyList(mHvacPropertyIds); in getPropertyList()
374 return mCarPropertyMgr.isPropertyAvailable(propertyId, area); in isPropertyAvailable()
384 return mCarPropertyMgr.getBooleanProperty(propertyId, area); in getBooleanProperty()
394 return mCarPropertyMgr.getFloatProperty(propertyId, area); in getFloatProperty()
404 return mCarPropertyMgr.getIntProperty(propertyId, area); in getIntProperty()
[all …]
/packages/services/Car/car-lib/src/android/car/hardware/cabin/
DCarCabinManager.java62 private final CarPropertyManager mCarPropertyMgr; field in CarCabinManager
476 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarCabinManager()
500 mCarPropertyMgr.registerCallback(mListenerToBase, c.getPropertyId(), 0); in registerCallback()
517 mCarPropertyMgr.unregisterCallback(mListenerToBase, c.getPropertyId()); in unregisterCallback()
530 return mCarPropertyMgr.getPropertyList(mCabinPropertyIds); in getPropertyList()
540 return mCarPropertyMgr.getBooleanProperty(propertyId, area); in getBooleanProperty()
550 return mCarPropertyMgr.getFloatProperty(propertyId, area); in getFloatProperty()
560 return mCarPropertyMgr.getIntProperty(propertyId, area); in getIntProperty()
571 mCarPropertyMgr.setBooleanProperty(propertyId, area, val); in setBooleanProperty()
583 mCarPropertyMgr.setFloatProperty(propertyId, area, val); in setFloatProperty()
[all …]
/packages/services/Car/car-lib/src/android/car/hardware/
DCarSensorManager.java48 private final CarPropertyManager mCarPropertyMgr; field in CarSensorManager
303 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarSensorManager()
312 mCarPropertyMgr.onCarDisconnected(); in onCarDisconnected()
336 return mCarPropertyMgr.getPropertyList(mSensorConfigIds); in getPropertyList()
406 if (mCarPropertyMgr.registerCallback(mCarPropertyEventListener, sensorType, rate)) { in registerListener()
422 mCarPropertyMgr.unregisterCallback(mCarPropertyEventListener); in unregisterListener()
438 mCarPropertyMgr.unregisterCallback(mCarPropertyEventListener, sensorType); in unregisterListener()
450 CarPropertyValue propertyValue = mCarPropertyMgr.getProperty(type, 0); in getLatestSensorEvent()
502 List<CarPropertyConfig> propertyConfigs = mCarPropertyMgr.getPropertyList(); in getSensorConfig()
/packages/services/Car/car-lib/src/android/car/
DCarInfoManager.java41 private final CarPropertyManager mCarPropertyMgr; field in CarInfoManager
274 CarPropertyValue<T> carProp = mCarPropertyMgr.getProperty( in getPropertyWithDefaultValue()
290 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarInfoManager()
295 mCarPropertyMgr.onCarDisconnected(); in onCarDisconnected()