Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DHalServiceBaseTest.java51 boolean isSupportedProperty = mHalServiceBase.isSupportedProperty(ONE_SUPPORTED_PROPERTY); in testIsSupportedProperty_withReturnTrue()
53 assertThat(isSupportedProperty).isTrue(); in testIsSupportedProperty_withReturnTrue()
58 boolean isSupportedProperty = mHalServiceBase in testIsSupportedProperty_withReturnFalse()
59 .isSupportedProperty(HalServiceBase.NOT_SUPPORTED_PROPERTY); in testIsSupportedProperty_withReturnFalse()
61 assertThat(isSupportedProperty).isFalse(); in testIsSupportedProperty_withReturnFalse()
DVehicleHalTest.java404 when(mPowerHalService.isSupportedProperty(eq(SOME_READ_ON_CHANGE_PROPERTY)))
406 when(mPowerHalService.isSupportedProperty(not(eq(SOME_READ_ON_CHANGE_PROPERTY))))
414 when(mPropertyHalService.isSupportedProperty(eq(SOME_READ_WRITE_STATIC_PROPERTY)))
416 when(mPropertyHalService.isSupportedProperty(not(eq(SOME_READ_WRITE_STATIC_PROPERTY))))
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/property/
DPropertyHalServiceConfigsUnitTest.java289 mPropertyHalServiceConfigs.isSupportedProperty(vendorProp)).isTrue(); in testIsSupportedProperty()
294 mPropertyHalServiceConfigs.isSupportedProperty(systemProp)).isTrue(); in testIsSupportedProperty()
299 mPropertyHalServiceConfigs.isSupportedProperty(fakeSystemPropId)).isFalse(); in testIsSupportedProperty()
302 mPropertyHalServiceConfigs.isSupportedProperty(fakePropId)).isFalse(); in testIsSupportedProperty()
305 mPropertyHalServiceConfigs.isSupportedProperty(BACKPORTED_PROPERTY)).isTrue(); in testIsSupportedProperty()
678 assertThat(mPropertyHalServiceConfigs.isSupportedProperty(vicProperty)).isFalse(); in testVicVehiclePropertiesFlagDisabled()
/packages/services/Car/service/src/com/android/car/hal/
DHalServiceBase.java69 public boolean isSupportedProperty(int propId) { in isSupportedProperty() method in HalServiceBase
DPropertyHalService.java1281 public boolean isSupportedProperty(int halPropId) { in isSupportedProperty() method in PropertyHalService
1282 return mPropertyHalServiceConfigs.isSupportedProperty(halPropId) in isSupportedProperty()
1296 if (isSupportedProperty(halPropId)) { in takeProperties()
DVehicleHal.java493 if (service.isSupportedProperty(propId)) { in priorityInit()
/packages/services/Car/service/src/com/android/car/hal/property/
DPropertyHalServiceConfigs.java390 public boolean isSupportedProperty(int propId) { in isSupportedProperty() method in PropertyHalServiceConfigs