/packages/services/Car/tests/carservice_unit_test/src/com/android/car/ |
D | HidlVehicleStubUnitTest.java | 158 }).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/ |
D | HidlVehicleStub.java | 157 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/ |
D | VehicleBindingUtilTest.cpp | 92 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()
|
D | VehicleBindingIntegrationTest.cpp | 37 auto result = vehicle->getPropConfigs(props); in isSeedVhalPropertySupported()
|
/packages/services/Car/cpp/watchdog/server/tests/ |
D | MockVehicle.h | 37 MOCK_METHOD(ndk::ScopedAStatus, getPropConfigs,
|
D | MockVhalClient.h | 75 getPropConfigs, (std::vector<int32_t>), (override));
|
D | WatchdogProcessServiceTest.cpp | 252 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/ |
D | HidlVhalClient.cpp | 186 VhalClientResult<std::vector<std::unique_ptr<IHalPropConfig>>> HidlVhalClient::getPropConfigs( in getPropConfigs() function in android::frameworks::automotive::vhal::HidlVhalClient 192 mHal->getPropConfigs(hidlPropIds, in getPropConfigs()
|
D | AidlVhalClient.cpp | 205 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/ |
D | HidlVhalClientTest.cpp | 56 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()
|
D | AidlVhalClientTest.cpp | 135 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/ |
D | HidlVhalClient.h | 74 VhalClientResult<std::vector<std::unique_ptr<IHalPropConfig>>> getPropConfigs(
|
D | IVhalClient.h | 334 virtual VhalClientResult<std::vector<std::unique_ptr<IHalPropConfig>>> getPropConfigs(
|
D | AidlVhalClient.h | 88 VhalClientResult<std::vector<std::unique_ptr<IHalPropConfig>>> getPropConfigs(
|
/packages/services/Car/cpp/security/vehicle_binding_util/src/ |
D | VehicleBindingUtil.cpp | 55 auto result = vehicle->getPropConfigs( in isSeedVhalPropertySupported()
|
/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/ |
D | HidlMockedVehicleHal.java | 175 public void getPropConfigs(ArrayList<Integer> props, getPropConfigsCallback cb) { in getPropConfigs() method in HidlMockedVehicleHal
|
D | AidlMockedVehicleHal.java | 208 public VehiclePropConfigs getPropConfigs(int[] props) throws RemoteException { in getPropConfigs() method in AidlMockedVehicleHal
|
/packages/services/Car/cpp/powerpolicy/server/src/ |
D | CarPowerPolicyServer.cpp | 1288 auto result = vhalService->getPropConfigs(props); in isPropertySupported()
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | WatchdogProcessService.cpp | 1120 if (auto result = vhalService->getPropConfigs({static_cast<int32_t>(propId)}); in queryVhalProperties()
|