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/ |
D | AidlVehiclePropConfigBuilder.java | 140 area.maxInt32Value = maxValue; in addAreaConfig() 172 area.maxInt32Value = maxValue; in addAreaConfig() 206 newArea.maxInt32Value = area.maxInt32Value; in duplicateAreaConfig()
|
D | HidlVehiclePropConfigBuilder.java | 60 newArea.maxInt32Value = area.maxInt32Value; in clone() 110 area.maxInt32Value = maxValue; in addAreaConfig()
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | HalPropConfig.java | 169 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()
|
D | AidlHalAreaConfig.java | 60 return mConfig.maxInt32Value; in getMaxInt32Value()
|
D | HidlHalAreaConfig.java | 64 return mConfig.maxInt32Value; in getMaxInt32Value()
|
/packages/services/Car/cpp/vhal/client/test/ |
D | HidlVhalClientTest.cpp | 328 .maxInt32Value = 1, in TEST_F() 333 .maxInt32Value = 3, in TEST_F() 382 .maxInt32Value = 1, in TEST_F() 387 .maxInt32Value = 3, in TEST_F()
|
D | AidlVhalClientTest.cpp | 813 .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/ |
D | FakeVhalConfigParserUnitTest.java | 602 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/ |
D | HalPropConfigTest.java | 144 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/ |
D | HidlHalPropConfig.cpp | 96 return mAreaConfig.maxInt32Value; in getMaxInt32Value()
|
D | AidlHalPropConfig.cpp | 100 return mAreaConfig.maxInt32Value; in getMaxInt32Value()
|
/packages/services/Car/service/src/com/android/car/hal/fakevhal/ |
D | FakeVehicleStub.java | 865 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()
|
D | FakeVhalConfigParser.java | 515 areaConfig.maxInt32Value = parseIntValue(reader, fieldName, errors); in parseAreaConfig()
|