Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/service/src/com/android/car/
H A 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()
H A 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()
H A DICarImpl.java116 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 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()
/aosp12/packages/services/Car/service/src/com/android/car/telemetry/publisher/
H A DVehiclePropertyPublisher.java51 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 DPublisherFactory.java37 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 DCarTelemetryService.java67 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 DCarInfoManager.java287 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 DCarVendorExtensionManager.java88 ICarProperty mCarPropertyService = ICarProperty.Stub.asInterface(service); in CarVendorExtensionManager() local
89 mPropertyManager = new CarPropertyManager(car, mCarPropertyService); in CarVendorExtensionManager()
H A DCarSensorManager.java306 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 DCarHvacManager.java315 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 DCarCabinManager.java476 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 DCarOccupantZoneServiceTest.java83 private CarPropertyService mCarPropertyService; field in CarOccupantZoneServiceTest
224 CarLocalServices.addService(CarPropertyService.class, mCarPropertyService); in setUp()