/packages/apps/Car/SystemUI/src/com/android/systemui/car/hvac/ |
D | HvacController.java | 33 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 92 HVAC_ACTUAL_FAN_SPEED_RPM, HVAC_POWER_ON, HVAC_FAN_DIRECTION_AVAILABLE, 95 {HVAC_POWER_ON, HVAC_AUTO_ON, HVAC_FAN_DIRECTION_AVAILABLE}; 102 HVAC_ACTUAL_FAN_SPEED_RPM, HVAC_POWER_ON, HVAC_FAN_DIRECTION_AVAILABLE, 155 mCarPropertyManager.getCarPropertyConfig(HVAC_POWER_ON); 395 if (value.getPropertyId() == HVAC_POWER_ON) { in handleHvacPropertyChange()
|
D | TemperatureControlView.java | 19 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 116 if (value.getPropertyId() == HVAC_POWER_ON) { in onPropertyChanged()
|
/packages/services/Car/service/src/com/android/car/hal/fakevhal/ |
D | FakeVehicleStub.java | 694 checkPropIdSupported(VehicleProperty.HVAC_POWER_ON); in getHvacPowerSupportedAreaId() 695 return getAllSupportedAreaId(VehicleProperty.HVAC_POWER_ON); in getHvacPowerSupportedAreaId() 697 Slogf.i(TAG, "%d is not supported.", VehicleProperty.HVAC_POWER_ON); in getHvacPowerSupportedAreaId() 710 checkPropIdSupported(VehicleProperty.HVAC_POWER_ON); in getHvacPowerDependentProps() 711 int[] configArray = mPropConfigsByPropId.get(VehicleProperty.HVAC_POWER_ON) in getHvacPowerDependentProps() 717 Slogf.i(TAG, "%d is not supported.", VehicleProperty.HVAC_POWER_ON); in getHvacPowerDependentProps() 799 HalPropValue propValues = get(mHalPropValueBuilder.build(VehicleProperty.HVAC_POWER_ON, in checkPropAvailable()
|
/packages/apps/Car/SystemUI/src/com/android/systemui/car/hvac/toggle/ |
D | HvacToggleButton.java | 20 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 164 if (value.getPropertyId() == HVAC_POWER_ON) { in onPropertyChanged()
|
/packages/apps/Car/SystemUI/src/com/android/systemui/car/hvac/referenceui/ |
D | FanDirectionButtons.java | 21 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 159 if (value.getPropertyId() == HVAC_POWER_ON) { in onPropertyChanged()
|
D | FanSpeedBar.java | 21 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 167 if (value.getPropertyId() == HVAC_POWER_ON) { in onPropertyChanged()
|
/packages/services/Car/car_product/car_ui_portrait/apps/CarUiPortraitSystemUI/src/com/android/systemui/car/hvac/custom/ |
D | FanSpeedSeekBar.java | 21 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 204 if (value.getPropertyId() == HVAC_POWER_ON) { in onPropertyChanged()
|
/packages/services/Car/car_product/car_ui_portrait/apps/CarUiPortraitSystemUI/src/com/android/systemui/car/hvac/ |
D | CarUiPortraitTemperatureControlView.java | 19 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 117 if (value.getPropertyId() == HVAC_POWER_ON) { in onPropertyChanged()
|
/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/hvac/ |
D | FanSpeedBarTest.java | 21 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 232 when(mHvacPowerProperty.getPropertyId()).thenReturn(HVAC_POWER_ON); in setPowerPropertyValue()
|
D | TemperatureControlViewTest.java | 19 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 252 when(mHvacPowerProperty.getPropertyId()).thenReturn(HVAC_POWER_ON); in setPowerPropertyValue()
|
D | HvacControllerTest.java | 23 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 155 when(mCarPropertyManager.getProperty(HVAC_POWER_ON, AREA_1)) in registerHvacView_retrieveHvacPropertiesToGetOnInit()
|
D | FanDirectionButtonTest.java | 21 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 376 when(mHvacPowerProperty.getPropertyId()).thenReturn(HVAC_POWER_ON); in setPowerPropertyValue()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/property/ |
D | HalValueDebugUtilsUnitTest.java | 49 assertThat(HalValueDebugUtils.toDebugString(VehicleProperty.HVAC_POWER_ON, in testToDebugString_handlesNonInteger()
|
D | HalPropertyDebugUtilsUnitTest.java | 92 toAreaIdString(VehicleProperty.HVAC_POWER_ON, VehicleAreaSeat.UNKNOWN)).isEqualTo( in testToAreaIdString_handlesSeatAreaType() 94 assertThat(toAreaIdString(VehicleProperty.HVAC_POWER_ON, in testToAreaIdString_handlesSeatAreaType()
|
/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/hvac/toggle/ |
D | HvacBooleanToggleButtonTest.java | 21 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 276 when(mHvacPowerProperty.getPropertyId()).thenReturn(HVAC_POWER_ON); in setPowerPropertyValue()
|
D | HvacIntegerToggleButtonTest.java | 21 import static android.car.VehiclePropertyIds.HVAC_POWER_ON; 316 when(mHvacPowerProperty.getPropertyId()).thenReturn(HVAC_POWER_ON); in setPowerPropertyValue()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | DiagnosticJsonTest.java | 38 private static final int SOME_VEHICLE_PROPERTY = VehicleProperty.HVAC_POWER_ON;
|
/packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/ |
D | CarPropertyTest.java | 177 saveProperty(VehicleProperty.HVAC_POWER_ON, HVAC_ALL); in setUp() 189 restoreProperty(VehicleProperty.HVAC_POWER_ON, HVAC_ALL); in tearDown()
|
/packages/services/Car/car-lib/src/com/android/car/internal/ |
D | PropertyPermissionMapping.java | 98 VehiclePropertyIds.HVAC_POWER_ON, in PropertyPermissionMapping()
|
/packages/services/Car/car-lib/api/ |
D | baseline.txt | 64 MissingPermission: android.car.VehiclePropertyIds#HVAC_POWER_ON: 65 …r.PERMISSION_CONTROL_CAR_CLIMATE required by field VehiclePropertyIds.HVAC_POWER_ON is hidden or r…
|
D | test-baseline.txt | 64 MissingPermission: android.car.VehiclePropertyIds#HVAC_POWER_ON: 65 …r.PERMISSION_CONTROL_CAR_CLIMATE required by field VehiclePropertyIds.HVAC_POWER_ON is hidden or r…
|
D | current.txt | 383 …"android.car.permission.CONTROL_CAR_CLIMATE") public static final int HVAC_POWER_ON = 354419984; /…
|
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
D | VehiclePropertyIdsTest.java | 208 propsToString.put(VehiclePropertyIds.HVAC_POWER_ON, "HVAC_POWER_ON"); in testToString()
|
/packages/services/Car/car-lib/src/android/car/ |
D | VehiclePropertyIds.java | 1910 public static final int HVAC_POWER_ON = 354419984; field in VehiclePropertyIds
|
/packages/services/Car/car-lib-module/api/ |
D | current.txt | 383 …"android.car.permission.CONTROL_CAR_CLIMATE") public static final int HVAC_POWER_ON = 354419984; /…
|