Home
last modified time | relevance | path

Searched refs:readValue (Results 1 – 7 of 7) sorted by relevance

/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/test/
DVehiclePropertyStoreTest.cpp201 auto result = mStore->readValue(requestValue); in TEST_F()
213 auto result = mStore->readValue(toInt(VehicleProperty::TIRE_PRESSURE), WHEEL_FRONT_RIGHT); in TEST_F()
224 auto result = mStore->readValue(toInt(VehicleProperty::TIRE_PRESSURE), WHEEL_REAR_LEFT); in TEST_F()
304 auto tokenResult = mStore->readValue(propId, /*areaId=*/0, /*token=*/2); in TEST_F()
317 auto result = mStore->readValue(values[0]); in TEST_F()
322 auto leftTirePressureResult = mStore->readValue(values[1]); in TEST_F()
356 auto result = mStore->readValue(requestValue); in TEST_F()
377 auto result = mStore->readValue(requestValue); in TEST_F()
395 auto result = mStore->readValue(requestValue); in TEST_F()
575 auto result = mStore->readValue(tirePressure); in TEST_F()
[all …]
/hardware/interfaces/graphics/mapper/stable-c/implutils/
Dimpltests.cpp111 auto readValue = NameValue::decode(buffer.data(), buffer.size()); in TEST() local
112 ASSERT_TRUE(readValue.has_value()); in TEST()
113 EXPECT_EQ(5, readValue->length()); in TEST()
114 EXPECT_EQ("Hello", *readValue); in TEST()
130 auto readValue = NameValue::decode(buffer.data(), buffer.size()); in TEST() local
131 EXPECT_FALSE(readValue.has_value()); in TEST()
132 readValue = NameValue::decode(buffer.data(), 0); in TEST()
133 ASSERT_FALSE(readValue.has_value()); in TEST()
/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/include/
DVehiclePropertyStore.h142 ValueResultType readValue(
149 ValueResultType readValue(int32_t prop, int32_t area = 0, int64_t token = 0) const
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/obd2frame/src/
DFakeObd2Frame.cpp146 auto readValueResult = mPropStore->readValue(OBD2_FREEZE_FRAME, /*area=*/0, timestamp); in getObd2FreezeFrame()
177 auto result = mPropStore->readValue(OBD2_FREEZE_FRAME, 0, timestamp); in clearObd2FreezeFrames()
/hardware/interfaces/automotive/vehicle/aidl/impl/utils/common/src/
DVehiclePropertyStore.cpp316 VehiclePropertyStore::ValueResultType VehiclePropertyStore::readValue( in readValue() function in android::hardware::automotive::vehicle::VehiclePropertyStore
330 VehiclePropertyStore::ValueResultType VehiclePropertyStore::readValue(int32_t propId, in readValue() function in android::hardware::automotive::vehicle::VehiclePropertyStore
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/obd2frame/test/
DFakeObd2FrameTest.cpp107 auto result = getPropertyStore()->readValue(OBD2_LIVE_FRAME); in TEST_F()
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/hardware/src/
DFakeVehicleHardware.cpp655 auto adasStateResult = mServerSidePropStore->readValue(adasStatePropertyId); in isAdasPropertyAvailable()
800 mServerSidePropStore->readValue(toInt(VehicleProperty::CRUISE_CONTROL_TYPE)); in isCruiseControlTypeStandard()
953 auto readResult = mServerSidePropStore->readValue(value); in getEchoReverseBytes()
1305 auto readResult = mServerSidePropStore->readValue(value); in getValue()
1853 result = mServerSidePropStore->readValue(value); in dumpOnePropertyById()
2105 result = mServerSidePropStore->readValue(prop); in dumpGetPropertyWithArg()
2131 auto readResult = mServerSidePropStore->readValue(value); in dumpSaveProperty()