Home
last modified time | relevance | path

Searched refs:mCarPropertyService (Results 1 – 12 of 12) sorted by relevance

/packages/services/Car/service/src/com/android/car/
DBluetoothDeviceConnectionPolicy.java132 private final CarPropertyService mCarPropertyService; field in BluetoothDeviceConnectionPolicy.CarServicesHelper
139 mCarPropertyService = CarLocalServices.getService(CarPropertyService.class); in CarServicesHelper()
140 if (mCarPropertyService == null) Slog.w(TAG, "Cannot find CarPropertyService"); in CarServicesHelper()
150 if (mCarPropertyService != null) { in init()
151 mCarPropertyService.registerListener(VehiclePropertyIds.SEAT_OCCUPANCY, in init()
157 if (mCarPropertyService != null) { in release()
158 mCarPropertyService.unregisterListener(VehiclePropertyIds.SEAT_OCCUPANCY, in release()
225 if (mCarPropertyService == null) { in getDriverSeatLocationFromVhal()
228 CarPropertyValue value = mCarPropertyService.getPropertySafe( in getDriverSeatLocationFromVhal()
234 List<CarPropertyConfig> availableProp = mCarPropertyService.getPropertyConfigList( in getDriverSeatLocationFromVhal()
DCarNightService.java61 private final CarPropertyService mCarPropertyService; field in CarNightService
158 mCarPropertyService = propertyService; in CarNightService()
171 mCarPropertyService.registerListener(VehicleProperty.NIGHT_MODE, 0, in init()
173 CarPropertyValue propertyValue = mCarPropertyService.getPropertySafe( in init()
DICarImpl.java114 private final CarPropertyService mCarPropertyService; field in ICarImpl
210 mCarPropertyService = constructWithTrace( in ICarImpl()
215 () -> new CarDrivingStateService(serviceContext, mCarPropertyService)); in ICarImpl()
218 mCarPropertyService)); in ICarImpl()
274 () -> new CarNightService(serviceContext, mCarPropertyService)); in ICarImpl()
351 () -> new CarEvsService(serviceContext, mHal.getEvsHal(), mCarPropertyService)); in ICarImpl()
369 allServices.add(mCarPropertyService); in ICarImpl()
578 return mCarPropertyService; in getCarService()
DCarUxRestrictionsManagerService.java134 private final CarPropertyService mCarPropertyService; field in CarUxRestrictionsManagerService
193 mCarPropertyService = propertyService; in CarUxRestrictionsManagerService()
221 mCarPropertyService.registerListener(VehicleProperty.PERF_VEHICLE_SPEED, in init()
347 CarPropertyValue value = mCarPropertyService.getPropertySafe( in getCurrentSpeed()
/packages/services/Car/service/src/com/android/car/telemetry/publisher/
DVehiclePropertyPublisher.java48 private final CarPropertyService mCarPropertyService; field in VehiclePropertyPublisher
66 mCarPropertyService = carPropertyService; in VehiclePropertyPublisher()
69 for (CarPropertyConfig property : mCarPropertyService.getPropertyList()) { in VehiclePropertyPublisher()
91 mCarPropertyService.registerListener( in onDataSubscriberAdded()
DPublisherFactory.java29 private final CarPropertyService mCarPropertyService; field in PublisherFactory
33 mCarPropertyService = carPropertyService; in PublisherFactory()
45 mCarPropertyService); in getPublisher()
/packages/services/Car/car-lib/src/android/car/
DCarInfoManager.java287 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarInfoManager() local
288 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarInfoManager()
/packages/services/Car/car-lib/src/android/car/hardware/
DCarVendorExtensionManager.java88 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarVendorExtensionManager() local
89 mPropertyManager = new CarPropertyManager(car, mCarPropertyService); in CarVendorExtensionManager()
DCarSensorManager.java306 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarSensorManager() local
307 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarSensorManager()
/packages/services/Car/car-lib/src/android/car/hardware/hvac/
DCarHvacManager.java315 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarHvacManager() local
316 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarHvacManager()
/packages/services/Car/car-lib/src/android/car/hardware/cabin/
DCarCabinManager.java476 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarCabinManager() local
477 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarCabinManager()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarOccupantZoneServiceTest.java83 private CarPropertyService mCarPropertyService; field in CarOccupantZoneServiceTest
224 CarLocalServices.addService(CarPropertyService.class, mCarPropertyService); in setUp()