Home
last modified time | relevance | path

Searched refs:maxInt32Value (Results 1 – 13 of 13) sorted by relevance

/packages/services/Car/libs/vehicle-hal-support-lib/src/com/android/car/hal/test/
DAidlVehiclePropConfigBuilder.java140 area.maxInt32Value = maxValue; in addAreaConfig()
172 area.maxInt32Value = maxValue; in addAreaConfig()
206 newArea.maxInt32Value = area.maxInt32Value; in duplicateAreaConfig()
DHidlVehiclePropConfigBuilder.java60 newArea.maxInt32Value = area.maxInt32Value; in clone()
110 area.maxInt32Value = maxValue; in addAreaConfig()
/packages/services/Car/service/src/com/android/car/hal/
DHalPropConfig.java169 int maxInt32Value, float minFloatValue, float maxFloatValue, long minInt64Value, in generateAreaIdConfig() argument
176 if ((minInt32Value != 0 || maxInt32Value != 0)) { in generateAreaIdConfig()
177 areaIdConfigBuilder.setMinValue(minInt32Value).setMaxValue(maxInt32Value); in generateAreaIdConfig()
DAidlHalAreaConfig.java60 return mConfig.maxInt32Value; in getMaxInt32Value()
DHidlHalAreaConfig.java64 return mConfig.maxInt32Value; in getMaxInt32Value()
/packages/services/Car/cpp/vhal/client/test/
DHidlVhalClientTest.cpp328 .maxInt32Value = 1, in TEST_F()
333 .maxInt32Value = 3, in TEST_F()
382 .maxInt32Value = 1, in TEST_F()
387 .maxInt32Value = 3, in TEST_F()
DAidlVhalClientTest.cpp813 .maxInt32Value = 1, in TEST_F()
820 .maxInt32Value = 3, in TEST_F()
879 .maxInt32Value = 1, in TEST_F()
886 .maxInt32Value = 3, in TEST_F()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/fakevhal/
DFakeVhalConfigParserUnitTest.java602 vehicleAreaConfig.maxInt32Value = 10; in testParseAreaConfigValueHasNoAccessLevel()
630 vehicleAreaConfig.maxInt32Value = 10; in testParseAreaConfigValueHasAccessLevel()
658 vehicleAreaConfig.maxInt32Value = 10; in testParseAreaConfig_PropertyConfigHasAccessLevel()
686 vehicleAreaConfig.maxInt32Value = 10; in testParseAreaConfig_PropertyAndAreaConfigHasAccessLevel()
757 vehicleAreaConfig1.maxInt32Value = 10; in testParseJsonConfig()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DHalPropConfigTest.java144 hidlAreaConfig.maxInt32Value = MAX_INT32_VALUE; in getTestHidlAreaConfig()
157 aidlAreaConfig.maxInt32Value = MAX_INT32_VALUE; in getTestAidlAreaConfig()
172 aidlAreaConfig.maxInt32Value = MAX_INT32_VALUE; in getTestInvalidAidlAreaConfig()
316 aidlVehiclePropConfig.areaConfigs[0].maxInt32Value = 0; in toCarPropertyConfig_doesNotConvertIntegerMinMaxIfBothZero()
/packages/services/Car/cpp/vhal/client/src/
DHidlHalPropConfig.cpp96 return mAreaConfig.maxInt32Value; in getMaxInt32Value()
DAidlHalPropConfig.cpp100 return mAreaConfig.maxInt32Value; in getMaxInt32Value()
/packages/services/Car/service/src/com/android/car/hal/fakevhal/
DFakeVehicleStub.java865 int maxInt32Value = areaConfig.getMaxInt32Value(); in withinRange() local
866 if (minInt32Value != maxInt32Value || minInt32Value != 0) { in withinRange()
868 if (int32Value > maxInt32Value || int32Value < minInt32Value) { in withinRange()
871 areaId, minInt32Value, maxInt32Value, int32Value); in withinRange()
DFakeVhalConfigParser.java515 areaConfig.maxInt32Value = parseIntValue(reader, fieldName, errors); in parseAreaConfig()