Home
last modified time | relevance | path

Searched refs:mCarPropertyValue (Results 1 – 2 of 2) sorted by relevance

/packages/services/Car/car-lib/src/android/car/hardware/property/
DCarPropertyEvent.java33 private final CarPropertyValue<?> mCarPropertyValue; field in CarPropertyEvent
46 public CarPropertyValue<?> getCarPropertyValue() { return mCarPropertyValue; } in getCarPropertyValue()
56 dest.writeParcelable(mCarPropertyValue, flags); in writeToParcel()
75 mCarPropertyValue = carPropertyValue; in CarPropertyEvent()
93 mCarPropertyValue = in.readParcelable(CarPropertyValue.class.getClassLoader()); in CarPropertyEvent()
100 ", mCarPropertyValue=" + mCarPropertyValue + in toString()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/units/
DUnitsBasePreferenceControllerTest.java65 private CarPropertyValue mCarPropertyValue; field in UnitsBasePreferenceControllerTest
176 when(mCarPropertyValue.getStatus()).thenReturn(CarPropertyValue.STATUS_AVAILABLE); in onPropertyChanged_propertyStatusIsAvailable_setsNewUnitIdAsValue()
177 when(mCarPropertyValue.getValue()).thenReturn(newUnit.getId()); in onPropertyChanged_propertyStatusIsAvailable_setsNewUnitIdAsValue()
178 mController.mCarPropertyEventCallback.onChangeEvent(mCarPropertyValue); in onPropertyChanged_propertyStatusIsAvailable_setsNewUnitIdAsValue()
187 when(mCarPropertyValue.getStatus()).thenReturn(CarPropertyValue.STATUS_AVAILABLE); in onPropertyChanged_propertyStatusIsAvailable_setsNewUnitAbbreviationAsSummary()
188 when(mCarPropertyValue.getValue()).thenReturn(newUnit.getId()); in onPropertyChanged_propertyStatusIsAvailable_setsNewUnitAbbreviationAsSummary()
189 mController.mCarPropertyEventCallback.onChangeEvent(mCarPropertyValue); in onPropertyChanged_propertyStatusIsAvailable_setsNewUnitAbbreviationAsSummary()