/aosp12/packages/services/Car/service/src/com/android/car/ |
H A 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()
|
H A 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()
|
H A D | ICarImpl.java | 116 private final CarPropertyService mCarPropertyService; field in ICarImpl 213 mCarPropertyService = constructWithTrace( in ICarImpl() 218 () -> new CarDrivingStateService(serviceContext, mCarPropertyService)); in ICarImpl() 221 mCarPropertyService)); in ICarImpl() 277 () -> new CarNightService(serviceContext, mCarPropertyService)); in ICarImpl() 354 () -> new CarEvsService(serviceContext, mHal.getEvsHal(), mCarPropertyService)); in ICarImpl() 360 mCarTelemetryService = new CarTelemetryService(serviceContext, mCarPropertyService); in ICarImpl() 374 allServices.add(mCarPropertyService); in ICarImpl() 585 return mCarPropertyService; in getCarService()
|
H A 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()
|
/aosp12/packages/services/Car/service/src/com/android/car/telemetry/publisher/ |
H A D | VehiclePropertyPublisher.java | 51 private final CarPropertyService mCarPropertyService; field in VehiclePropertyPublisher 81 mCarPropertyService = carPropertyService; in VehiclePropertyPublisher() 84 List<CarPropertyConfig> propertyList = mCarPropertyService.getPropertyList(); in VehiclePropertyPublisher() 114 mCarPropertyService.registerListener( in addDataSubscriber() 142 mCarPropertyService.unregisterListener(propertyId, mCarPropertyEventListener); in removeDataSubscriber() 152 mCarPropertyService.unregisterListener(propertyId, mCarPropertyEventListener); in removeAllDataSubscribers()
|
H A D | PublisherFactory.java | 37 private final CarPropertyService mCarPropertyService; field in PublisherFactory 52 mCarPropertyService = carPropertyService; in PublisherFactory() 66 mCarPropertyService, mFailureListener, mTelemetryHandler); in getPublisher()
|
/aosp12/packages/services/Car/service/src/com/android/car/telemetry/ |
H A D | CarTelemetryService.java | 67 private final CarPropertyService mCarPropertyService; field in CarTelemetryService 83 mCarPropertyService = carPropertyService; in CarTelemetryService() 99 mPublisherFactory = new PublisherFactory(mCarPropertyService, mTelemetryHandler, in init()
|
/aosp12/packages/services/Car/car-lib/src/android/car/ |
H A D | CarInfoManager.java | 287 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarInfoManager() local 288 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarInfoManager()
|
/aosp12/packages/services/Car/car-lib/src/android/car/hardware/ |
H A D | CarVendorExtensionManager.java | 88 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarVendorExtensionManager() local 89 mPropertyManager = new CarPropertyManager(car, mCarPropertyService); in CarVendorExtensionManager()
|
H A D | CarSensorManager.java | 306 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarSensorManager() local 307 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarSensorManager()
|
/aosp12/packages/services/Car/car-lib/src/android/car/hardware/hvac/ |
H A D | CarHvacManager.java | 315 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarHvacManager() local 316 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarHvacManager()
|
/aosp12/packages/services/Car/car-lib/src/android/car/hardware/cabin/ |
H A D | CarCabinManager.java | 476 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarCabinManager() local 477 mCarPropertyMgr = new CarPropertyManager(car, mCarPropertyService); in CarCabinManager()
|
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/ |
H A D | CarOccupantZoneServiceTest.java | 83 private CarPropertyService mCarPropertyService; field in CarOccupantZoneServiceTest 224 CarLocalServices.addService(CarPropertyService.class, mCarPropertyService); in setUp()
|