Home
last modified time | relevance | path

Searched refs:byteValues (Results 1 – 16 of 16) sorted by relevance

/hardware/interfaces/automotive/vehicle/aidl/aidl_api/android.hardware.automotive.vehicle/1/android/hardware/automotive/vehicle/
DRawPropValues.aidl40 byte[] byteValues;
/hardware/interfaces/automotive/vehicle/aidl/aidl_api/android.hardware.automotive.vehicle/2/android/hardware/automotive/vehicle/
DRawPropValues.aidl40 byte[] byteValues;
/hardware/interfaces/automotive/vehicle/aidl/aidl_api/android.hardware.automotive.vehicle/current/android/hardware/automotive/vehicle/
DRawPropValues.aidl40 byte[] byteValues;
/hardware/interfaces/automotive/vehicle/aidl/aidl_api/android.hardware.automotive.vehicle/3/android/hardware/automotive/vehicle/
DRawPropValues.aidl40 byte[] byteValues;
/hardware/interfaces/automotive/vehicle/aidl/android/hardware/automotive/vehicle/
DRawPropValues.aidl42 byte[] byteValues;
/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/test/
DVehicleUtilsTest.cpp197 .value.byteValues = {static_cast<uint8_t>(0)}, in getInvalidPropValuesTestCases()
218 .value.byteValues = {static_cast<uint8_t>(0)}, in getInvalidPropValuesTestCases()
238 .value.byteValues = {static_cast<uint8_t>(0)}, in getInvalidPropValuesTestCases()
258 .value.byteValues = {static_cast<uint8_t>(0)}, in getInvalidPropValuesTestCases()
278 .value.byteValues = {static_cast<uint8_t>(0), in getInvalidPropValuesTestCases()
609 ASSERT_EQ(1u, value->value.byteValues.size()); in TEST()
680 ASSERT_EQ(2u, value->value.byteValues.size()); in TEST()
/hardware/interfaces/automotive/vehicle/aidl/impl/grpc/utils/proto_message_converter/src/
DProtoMessageConverter.cpp125 out->set_byte_values(in.value.byteValues.data(), in.value.byteValues.size()); in aidlToProto()
147 out->value.byteValues.push_back(byte); in protoToAidl()
/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/include/
DVehicleUtils.h120 val->value.byteValues.resize(vecSize); in createVehiclePropValueVec()
155 return value.byteValues.size(); in getVehicleRawValueVectorSize()
172 dest->byteValues = src.byteValues; in copyVehicleRawValue()
188 size += prop.value.byteValues.size() * sizeof(uint8_t); in getVehiclePropValueSize()
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/obd2frame/test/
DObd2SensorStoreTest.cpp63 ASSERT_EQ(propValue->value.byteValues, bitMask); in TEST()
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/obd2frame/src/
DObd2SensorStore.cpp134 propValue->value.byteValues = getSensorsBitmask(); in getSensorProperty()
/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/src/
DVehicleObjectPool.cpp149 check(&v->byteValues, VehiclePropertyType::BYTES == mPropType) && in check()
DVehicleUtils.cpp175 size_t byteSize = value.value.byteValues.size(); in checkVendorMixedPropValue()
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/GeneratorHub/src/
DJsonFakeValueGenerator.cpp162 value.byteValues = generateDiagnosticBytes(value); in parseFakeValueJson()
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/hardware/src/
DFakeVehicleHardware.cpp959 std::vector<uint8_t> byteValues = gotValue->value.byteValues; in getEchoReverseBytes() local
960 size_t byteSize = byteValues.size(); in getEchoReverseBytes()
962 gotValue->value.byteValues[i] = byteValues[byteSize - 1 - i]; in getEchoReverseBytes()
2030 prop.value.byteValues = std::move(bytesResult.value()); in parsePropOptions()
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/GeneratorHub/test/
DFakeVehicleHalValueGeneratorsTest.cpp462 .byteValues = {0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, in TEST_F()
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/hardware/test/
DFakeVehicleHardwareTest.cpp1071 .value.byteValues = {0x1}, in setSpecialValueTestCases()
1079 .value.byteValues = {0x1}, in setSpecialValueTestCases()
2919 ASSERT_FALSE(memcmp(bytes, value.value.byteValues.data(), sizeof(bytes))); in TEST_F()
3337 .byteValues = {0x01, 0x02, 0x03, 0x04}, in TEST_F()
3347 ASSERT_EQ(result.value().value.byteValues, std::vector<uint8_t>({0x04, 0x03, 0x02, 0x01})); in TEST_F()