Searched refs:mPropertyManager (Results 1 – 5 of 5) sorted by relevance
/aosp12/packages/services/Car/car-lib/src/android/car/hardware/ |
H A D | CarVendorExtensionManager.java | 50 private final CarPropertyManager mPropertyManager; field in CarVendorExtensionManager 89 mPropertyManager = new CarPropertyManager(car, mCarPropertyService); in CarVendorExtensionManager() 113 List<CarPropertyConfig> configs = mPropertyManager.getPropertyList(); in registerCallback() 126 List<CarPropertyConfig> configs = mPropertyManager.getPropertyList(); in unregisterCallback() 129 mPropertyManager.unregisterCallback(mListenerToBase, c.getPropertyId()); in unregisterCallback() 139 return mPropertyManager.getPropertyList(); in getProperties() 147 return mPropertyManager.isPropertyAvailable(propertyId, area); in isPropertyAvailable() 173 return mPropertyManager.getProperty(propertyClass, propId, area).getValue(); in getProperty() 187 mPropertyManager.setProperty(propertyClass, propId, 0 /* area */, value); in setGlobalProperty() 203 mPropertyManager.setProperty(propertyClass, propId, area, value); in setProperty() [all …]
|
/aosp12/packages/services/Car/tests/CarSecurityPermissionTest/src/com/android/car/ |
H A D | CarPropertyManagerPublicPermissionTest.java | 45 private CarPropertyManager mPropertyManager; field in CarPropertyManagerPublicPermissionTest 66 mPropertyManager = (CarPropertyManager) mCar.getCarManager(Car.PROPERTY_SERVICE); in setUp() 67 assertThat(mPropertyManager).isNotNull(); in setUp() 222 mPropertyManager.getFloatProperty(propertyId, PLACEHOLDER_AREA_ID); in testCarPropertyManagerGetter() 228 mPropertyManager.getIntProperty(propertyId, PLACEHOLDER_AREA_ID); in testCarPropertyManagerGetter() 231 mPropertyManager.getProperty(propertyId, PLACEHOLDER_AREA_ID); in testCarPropertyManagerGetter() 259 mPropertyManager.setBooleanProperty(propertyId, PLACEHOLDER_AREA_ID, in testCarPropertyManagerSetter() 263 mPropertyManager.setFloatProperty(propertyId, PLACEHOLDER_AREA_ID, in testCarPropertyManagerSetter() 271 mPropertyManager.setIntProperty(propertyId, PLACEHOLDER_AREA_ID, in testCarPropertyManagerSetter() 275 mPropertyManager.setProperty(Integer[].class, propertyId, in testCarPropertyManagerSetter() [all …]
|
/aosp12/packages/apps/Car/Cluster/ClusterOsDouble/src/com/android/car/cluster/osdouble/ |
H A D | ClusterOsDoubleActivity.java | 87 private CarPropertyManager mPropertyManager; field in ClusterOsDoubleActivity 112 mPropertyManager = (CarPropertyManager) car.getCarManager(Car.PROPERTY_SERVICE); in onCreate() 202 mPropertyManager.registerCallback(mPropertyEventCallback, in initClusterOsDouble() 204 mPropertyManager.registerCallback(mPropertyEventCallback, in initClusterOsDouble() 206 mPropertyManager.registerCallback(mPropertyEventCallback, in initClusterOsDouble() 313 mPropertyManager.setProperty(Integer[].class, VENDOR_CLUSTER_DISPLAY_STATE, in sendDisplayState() 322 mPropertyManager.setProperty(Integer.class, VENDOR_CLUSTER_SWITCH_UI, in switchUi()
|
/aosp12/packages/services/Car/experimental/service/src/com/android/experimentalcar/ |
H A D | DriverDistractionExperimentalFeatureService.java | 194 private CarPropertyManager mPropertyManager; field in DriverDistractionExperimentalFeatureService 279 mPropertyManager = (CarPropertyManager) mCar.getCarManager(Car.PROPERTY_SERVICE); in init() 285 if (mPropertyManager != null) { in init() 286 mPropertyManager.registerCallback(mSpeedPropertyEventCallback, in init() 304 if (mPropertyManager != null) { in release() 305 mPropertyManager.unregisterCallback(mSpeedPropertyEventCallback); in release()
|
/aosp12/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/ |
H A D | KitchenSinkActivity.java | 227 private CarPropertyManager mPropertyManager; field in KitchenSinkActivity 248 return mPropertyManager; in getPropertyManager() 416 mPropertyManager = (CarPropertyManager) car.getCarManager( in initManagers()
|