Home
last modified time | relevance | path

Searched refs:getPropConfigs (Results 1 – 19 of 19) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DHidlVehicleStubUnitTest.java158 }).when(mHidlVehicle).getPropConfigs( in testGetAllPropConfigsHidl()
209 }).when(mHidlVehicle).getPropConfigs(any(), any()); in testGetAllPropConfigsHidlMultipleRequests()
231 verify(mHidlVehicle, times(4)).getPropConfigs(captor.capture(), any()); in testGetAllPropConfigsHidlMultipleRequests()
243 }).when(mHidlVehicle).getPropConfigs( in testGetAllPropConfigsHidlMultipleRequestsNoConfig()
260 }).when(mHidlVehicle).getPropConfigs( in testGetAllPropConfigsHidlMultipleRequestsInvalidConfig()
276 }).when(mHidlVehicle).getPropConfigs( in testGetAllPropConfigsHidlMultipleRequestsGetValueInvalidArg()
295 }).when(mHidlVehicle).getPropConfigs( in testGetAllPropConfigsHidlMultipleRequestsNoConfigReturned()
315 }).when(mHidlVehicle).getPropConfigs( in testGetAllPropConfigsHidlMultipleRequestsGetValueError()
337 }).when(mHidlVehicle).getPropConfigs( in testGetAllPropConfigsHidlMultipleRequestsGetValueUnavailable()
/packages/services/Car/service/src/com/android/car/
DHidlVehicleStub.java157 configForSupportedProps = getPropConfigs(new ArrayList<>( in getAllPropConfigs()
457 ArrayList<VehiclePropConfig> subConfigs = getPropConfigs(requestPropIds); in getAllPropConfigsThroughMultipleRequests()
465 private ArrayList<VehiclePropConfig> getPropConfigs(ArrayList<Integer> propIds) in getPropConfigs() method in HidlVehicleStub
468 mHidlVehicle.getPropConfigs(propIds, in getPropConfigs()
/packages/services/Car/cpp/security/vehicle_binding_util/tests/
DVehicleBindingUtilTest.cpp92 MOCK_METHOD(VhalClientResult<std::vector<std::unique_ptr<IHalPropConfig>>>, getPropConfigs,
126 EXPECT_CALL(*mMockVehicle, getPropConfigs(expectedProps)) in setMockVhalPropertySupported()
175 EXPECT_CALL(*mMockVehicle, getPropConfigs(expectedProps)) in TEST_F()
DVehicleBindingIntegrationTest.cpp37 auto result = vehicle->getPropConfigs(props); in isSeedVhalPropertySupported()
/packages/services/Car/cpp/watchdog/server/tests/
DMockVehicle.h37 MOCK_METHOD(ndk::ScopedAStatus, getPropConfigs,
DMockVhalClient.h75 getPropConfigs, (std::vector<int32_t>), (override));
DWatchdogProcessServiceTest.cpp252 getPropConfigs(std::vector<int32_t>{static_cast<int32_t>(propId)})) in expectGetPropConfigs()
257 getPropConfigs(std::vector<int32_t>{static_cast<int32_t>(propId)})) in expectGetPropConfigs()
/packages/services/Car/cpp/vhal/client/src/
DHidlVhalClient.cpp186 VhalClientResult<std::vector<std::unique_ptr<IHalPropConfig>>> HidlVhalClient::getPropConfigs( in getPropConfigs() function in android::frameworks::automotive::vhal::HidlVhalClient
192 mHal->getPropConfigs(hidlPropIds, in getPropConfigs()
DAidlVhalClient.cpp205 VhalClientResult<std::vector<std::unique_ptr<IHalPropConfig>>> AidlVhalClient::getPropConfigs( in getPropConfigs() function in android::frameworks::automotive::vhal::AidlVhalClient
208 if (ScopedAStatus status = mHal->getPropConfigs(propIds, &configs); !status.isOk()) { in getPropConfigs()
/packages/services/Car/cpp/vhal/client/test/
DHidlVhalClientTest.cpp56 Return<void> getPropConfigs(const hidl_vec<int32_t>& props, in getPropConfigs() function in android::frameworks::automotive::vhal::hidl_test::MockVhal
396 auto result = getClient()->getPropConfigs(propIds); in TEST_F()
435 auto result = getClient()->getPropConfigs(propIds); in TEST_F()
DAidlVhalClientTest.cpp135 ScopedAStatus getPropConfigs(const std::vector<int32_t>& props, in getPropConfigs() function in android::frameworks::automotive::vhal::aidl_test::MockVhal
895 auto result = getClient()->getPropConfigs(propIds); in TEST_F()
934 auto result = getClient()->getPropConfigs(propIds); in TEST_F()
/packages/services/Car/cpp/vhal/client/include/
DHidlVhalClient.h74 VhalClientResult<std::vector<std::unique_ptr<IHalPropConfig>>> getPropConfigs(
DIVhalClient.h334 virtual VhalClientResult<std::vector<std::unique_ptr<IHalPropConfig>>> getPropConfigs(
DAidlVhalClient.h88 VhalClientResult<std::vector<std::unique_ptr<IHalPropConfig>>> getPropConfigs(
/packages/services/Car/cpp/security/vehicle_binding_util/src/
DVehicleBindingUtil.cpp55 auto result = vehicle->getPropConfigs( in isSeedVhalPropertySupported()
/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/
DHidlMockedVehicleHal.java175 public void getPropConfigs(ArrayList<Integer> props, getPropConfigsCallback cb) { in getPropConfigs() method in HidlMockedVehicleHal
DAidlMockedVehicleHal.java208 public VehiclePropConfigs getPropConfigs(int[] props) throws RemoteException { in getPropConfigs() method in AidlMockedVehicleHal
/packages/services/Car/cpp/powerpolicy/server/src/
DCarPowerPolicyServer.cpp1288 auto result = vhalService->getPropConfigs(props); in isPropertySupported()
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogProcessService.cpp1120 if (auto result = vhalService->getPropConfigs({static_cast<int32_t>(propId)}); in queryVhalProperties()