Searched refs:propValueBuilder (Results 1 – 4 of 4) sorted by relevance
154 AidlVehiclePropValueBuilder propValueBuilder = AidlVehiclePropValueBuilder.newBuilder( in build() local157 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()
71 HalPropValueBuilder propValueBuilder = new HalPropValueBuilder(/*isAidl=*/true); in createVehicleHalWithMockedServices() local73 when(vehicleStub.getHalPropValueBuilder()).thenReturn(propValueBuilder); in createVehicleHalWithMockedServices()
486 HalPropValueBuilder propValueBuilder = new HalPropValueBuilder(/*isAidl=*/true); in testSendDisplayBrightnessPerDisplay() local487 HalPropValue message = propValueBuilder.build(VehicleProperty.PER_DISPLAY_BRIGHTNESS, in testSendDisplayBrightnessPerDisplay()489 when(mHal.getHalPropValueBuilder()).thenReturn(propValueBuilder); in testSendDisplayBrightnessPerDisplay()
874 AsyncGetResultsHandler(HalPropValueBuilder propValueBuilder) { in AsyncGetResultsHandler() argument875 mPropValueBuilder = propValueBuilder; in AsyncGetResultsHandler()