Home
last modified time | relevance | path

Searched refs:propValueBuilder (Results 1 – 4 of 4) sorted by relevance

/packages/services/Car/libs/vehicle-hal-support-lib/src/com/android/car/hal/test/
DDiagnosticEventBuilder.java154 AidlVehiclePropValueBuilder propValueBuilder = AidlVehiclePropValueBuilder.newBuilder( in build() local
157 propValueBuilder.setCurrentTimestamp(); in build()
159 propValueBuilder.setTimestamp(timestamp); in build()
161 mIntValues.forEach(propValueBuilder::addIntValues); in build()
162 mFloatValues.forEach(propValueBuilder::addFloatValues); in build()
163 propValueBuilder.addByteValues(mBitmask.toByteArray()); in build()
165 propValueBuilder.setStringValue(mDtc); in build()
167 return propValueBuilder.build(); in build()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DMockedPowerHalService.java71 HalPropValueBuilder propValueBuilder = new HalPropValueBuilder(/*isAidl=*/true); in createVehicleHalWithMockedServices() local
73 when(vehicleStub.getHalPropValueBuilder()).thenReturn(propValueBuilder); in createVehicleHalWithMockedServices()
DPowerHalServiceUnitTest.java486 HalPropValueBuilder propValueBuilder = new HalPropValueBuilder(/*isAidl=*/true); in testSendDisplayBrightnessPerDisplay() local
487 HalPropValue message = propValueBuilder.build(VehicleProperty.PER_DISPLAY_BRIGHTNESS, in testSendDisplayBrightnessPerDisplay()
489 when(mHal.getHalPropValueBuilder()).thenReturn(propValueBuilder); in testSendDisplayBrightnessPerDisplay()
/packages/services/Car/service/src/com/android/car/
DAidlVehicleStub.java874 AsyncGetResultsHandler(HalPropValueBuilder propValueBuilder) { in AsyncGetResultsHandler() argument
875 mPropValueBuilder = propValueBuilder; in AsyncGetResultsHandler()