Home
last modified time | relevance | path

Searched refs:mHalPropValueBuilder (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarFeatureControllerUnitTest.java49 private final HalPropValueBuilder mHalPropValueBuilder = new HalPropValueBuilder( field in CarFeatureControllerUnitTest
73 HalPropValue disabledFeaturesResponse = mHalPropValueBuilder.build( in testIsFeatureEnabled_enabled()
88 HalPropValue disabledFeaturesResponse = mHalPropValueBuilder.build( in testIsFeatureEnabled_disabled()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/power/
DCarPowerManagementServiceUnitTest.java226 private final HalPropValueBuilder mHalPropValueBuilder = new HalPropValueBuilder( field in CarPowerManagementServiceUnitTest
2391 when(mockVehicleStub.getHalPropValueBuilder()).thenReturn(mHalPropValueBuilder); in testOnInitComplete()
2406 HalPropValue vehicleInUseRequest = mHalPropValueBuilder.build( in testOnInitComplete()
2408 HalPropValue vehicleInUseResponse = mHalPropValueBuilder.build( in testOnInitComplete()
2412 HalPropValue bootupReasonRequest = mHalPropValueBuilder.build( in testOnInitComplete()
2414 HalPropValue bootupReasonResponse = mHalPropValueBuilder.build( in testOnInitComplete()
2421 verify(mockVehicleStub).set(mHalPropValueBuilder.build(VehicleProperty.SHUTDOWN_REQUEST, 0, in testOnInitComplete()
2431 when(mockVehicleStub.getHalPropValueBuilder()).thenReturn(mHalPropValueBuilder); in testOnInitComplete_flagDisabled_doNothing()
2455 when(mockVehicleStub.getHalPropValueBuilder()).thenReturn(mHalPropValueBuilder); in testOnInitComplete_bootupReasonNotSupported()
2470 HalPropValue bootupReasonRequest = mHalPropValueBuilder.build( in testOnInitComplete_bootupReasonNotSupported()
[all …]
/packages/services/Car/service/src/com/android/car/hal/fakevhal/
DFakeVehicleStub.java96 private final HalPropValueBuilder mHalPropValueBuilder; field in FakeVehicleStub
150 mHalPropValueBuilder = new HalPropValueBuilder(/* isAidl= */ true); in FakeVehicleStub()
180 return mHalPropValueBuilder; in getHalPropValueBuilder()
765 return mHalPropValueBuilder.build(propValue); in buildHalPropValue()
799 HalPropValue propValues = get(mHalPropValueBuilder.build(VehicleProperty.HVAC_POWER_ON, in checkPropAvailable()