/packages/services/Car/service/src/com/android/car/ |
D | BluetoothDeviceConnectionPolicy.java | 132 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()
|
D | CarNightService.java | 61 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()
|
D | ICarImpl.java | 114 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()
|
D | CarUxRestrictionsManagerService.java | 134 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/ |
D | VehiclePropertyPublisher.java | 48 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()
|
D | PublisherFactory.java | 29 private final CarPropertyService mCarPropertyService; field in PublisherFactory 33 mCarPropertyService = carPropertyService; in PublisherFactory() 45 mCarPropertyService); in getPublisher()
|
/packages/services/Car/car-lib/src/android/car/ |
D | CarInfoManager.java | 287 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/ |
D | CarVendorExtensionManager.java | 88 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarVendorExtensionManager() local 89 mPropertyManager = new CarPropertyManager(car, mCarPropertyService); in CarVendorExtensionManager()
|
D | CarSensorManager.java | 306 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/ |
D | CarHvacManager.java | 315 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/ |
D | CarCabinManager.java | 476 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/ |
D | CarOccupantZoneServiceTest.java | 83 private CarPropertyService mCarPropertyService; field in CarOccupantZoneServiceTest 224 CarLocalServices.addService(CarPropertyService.class, mCarPropertyService); in setUp()
|