Home
last modified time | relevance | path

Searched refs:getSupportedValuesLists (Results 1 – 10 of 10) sorted by relevance

/packages/services/Car/cpp/vhal/client/test/
DAidlVhalClientTest.cpp180 MOCK_METHOD(ScopedAStatus, getSupportedValuesLists,
1323 EXPECT_CALL(*getVhal(), getSupportedValuesLists) in TEST_F()
1331 auto result = getClient()->getSupportedValuesLists({propIdAreaId}); in TEST_F()
1347 EXPECT_CALL(*getVhal(), getSupportedValuesLists) in TEST_F()
1351 auto result = getClient()->getSupportedValuesLists({propIdAreaId}); in TEST_F()
1364 auto result = getClient()->getSupportedValuesLists({propIdAreaId}); in TEST_F()
DHidlVhalClientTest.cpp670 auto result = getClient()->getSupportedValuesLists({propIdAreaId}); in TEST_F()
/packages/services/Car/cpp/watchdog/stable_server/tests/
DMockVehicle.h66 MOCK_METHOD(ndk::ScopedAStatus, getSupportedValuesLists,
/packages/services/Car/cpp/watchdog/server/tests/
DMockVehicle.h66 MOCK_METHOD(ndk::ScopedAStatus, getSupportedValuesLists,
/packages/services/Car/cpp/vhal/client/include/
DIVhalClient.h431 getSupportedValuesLists( in getSupportedValuesLists() function
DAidlVhalClient.h103 getSupportedValuesLists(
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DAidlVehicleStubUnitTest.java1541 when(mAidlVehicle.getSupportedValuesLists(captor.capture())).thenReturn(results); in testGetSupportedValuesList()
1565 when(mAidlVehicle.getSupportedValuesLists(any())).thenReturn(results); in testGetSupportedValuesList_notSpecified()
1577 when(mAidlVehicle.getSupportedValuesLists(any())).thenThrow(new RemoteException()); in testGetSupportedValuesList_RemoteException()
1588 when(mAidlVehicle.getSupportedValuesLists(any())).thenThrow( in testGetSupportedValuesList_ServiceSpecificException()
1608 when(mAidlVehicle.getSupportedValuesLists(any())).thenReturn(results); in testGetSupportedValuesList_nonOkayStatus()
/packages/services/Car/cpp/vhal/client/src/
DAidlVhalClient.cpp370 VhalClientResult<std::vector<SupportedValuesListResult>> AidlVhalClient::getSupportedValuesLists( in getSupportedValuesLists() function in android::frameworks::automotive::vhal::AidlVhalClient
379 if (auto status = mHal->getSupportedValuesLists(propIdAreaIds, &results); !status.isOk()) { in getSupportedValuesLists()
/packages/services/Car/tests/CarServiceTest/dep/src/com/android/car/hal/test/
DAidlMockedVehicleHal.java401 public SupportedValuesListResults getSupportedValuesLists(List<PropIdAreaId> propIdAreaIds) { in getSupportedValuesLists() method in AidlMockedVehicleHal
/packages/services/Car/service/src/com/android/car/
DAidlVehicleStub.java457 results = mAidlVehicle.getSupportedValuesLists(List.of(propIdAreaId)); in getSupportedValuesList()