/packages/services/Car/tests/carservice_unit_test/src/com/android/car/ |
D | VehicleStubTest.java | 218 when(mHidlVehicle.getAllPropConfigs()).thenReturn(hidlConfigs); in testGetAllPropConfigsHidl() 220 HalPropConfig[] configs = mHidlVehicleStub.getAllPropConfigs(); in testGetAllPropConfigsHidl() 276 HalPropConfig[] configs = mHidlVehicleStub.getAllPropConfigs(); in testGetAllPropConfigsHidlMultipleRequests() 292 verify(mHidlVehicle, never()).getAllPropConfigs(); in testGetAllPropConfigsHidlMultipleRequests() 313 assertThrows(IllegalArgumentException.class, () -> mHidlVehicleStub.getAllPropConfigs()); in testGetAllPropConfigsHidlMultipleRequestsNoConfig() 314 verify(mHidlVehicle, never()).getAllPropConfigs(); in testGetAllPropConfigsHidlMultipleRequestsNoConfig() 332 assertThrows(IllegalArgumentException.class, () -> mHidlVehicleStub.getAllPropConfigs()); in testGetAllPropConfigsHidlMultipleRequestsInvalidConfig() 333 verify(mHidlVehicle, never()).getAllPropConfigs(); in testGetAllPropConfigsHidlMultipleRequestsInvalidConfig() 358 assertThrows(ServiceSpecificException.class, () -> mHidlVehicleStub.getAllPropConfigs()); in testGetAllPropConfigsHidlMultipleRequestsGetValueInvalidArg() 359 verify(mHidlVehicle, never()).getAllPropConfigs(); in testGetAllPropConfigsHidlMultipleRequestsGetValueInvalidArg() [all …]
|
/packages/services/Car/service/src/com/android/car/ |
D | HidlVehicleStub.java | 148 public HalPropConfig[] getAllPropConfigs() throws RemoteException { in getAllPropConfigs() method in HidlVehicleStub 157 return vehiclePropConfigsToHalPropConfigs(mHidlVehicle.getAllPropConfigs()); in getAllPropConfigs() 163 return vehiclePropConfigsToHalPropConfigs(mHidlVehicle.getAllPropConfigs()); in getAllPropConfigs()
|
D | VehicleStub.java | 137 public abstract HalPropConfig[] getAllPropConfigs() in getAllPropConfigs() method in VehicleStub
|
D | AidlVehicleStub.java | 190 public HalPropConfig[] getAllPropConfigs() in getAllPropConfigs() method in AidlVehicleStub 194 mAidlVehicle.getAllPropConfigs(), /* keepSharedMemory= */ false); in getAllPropConfigs()
|
D | CarShellCommand.java | 3136 HalPropConfig[] configs = mHal.getAllPropConfigs();
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | VehicleHalTest.java | 162 when(mHalClient.getAllPropConfigs()).thenReturn(toHalPropConfigs(mConfigs)); in init() 275 when(mHalClient.getAllPropConfigs()).thenReturn(toHalPropConfigs(mConfigs)); 296 verify(mHalClient, times(1)).getAllPropConfigs(); 318 when(mHalClient.getAllPropConfigs()).thenReturn(new HalPropConfig[0]); 362 when(mHalClient.getAllPropConfigs()).thenReturn(null); 406 when(mHalClient.getAllPropConfigs()).thenThrow(new RemoteException()); 823 when(mHalClient.getAllPropConfigs()).thenReturn(toHalPropConfigs(mConfigs)); 1245 when(mHalClient.getAllPropConfigs()).thenReturn(toHalPropConfigs(mConfigs));
|
D | HalClientUnitTest.java | 205 when(mIVehicle.getAllPropConfigs()).thenReturn(configs); in testGetAllPropConfigs() 207 assertThat(mClient.getAllPropConfigs()).isEqualTo(configs); in testGetAllPropConfigs()
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | HalClient.java | 94 HalPropConfig[] getAllPropConfigs() in getAllPropConfigs() method in HalClient 96 return mVehicle.getAllPropConfigs(); in getAllPropConfigs()
|
D | VehicleHal.java | 192 configs = mHalClient.getAllPropConfigs(); in fetchAllPropConfigs() 857 public HalPropConfig[] getAllPropConfigs() throws RemoteException, ServiceSpecificException { in getAllPropConfigs() method in VehicleHal 858 return mVehicleStub.getAllPropConfigs(); in getAllPropConfigs()
|
/packages/services/Car/cpp/vhal/client/src/ |
D | HidlVhalClient.cpp | 172 VhalResult<std::vector<std::unique_ptr<IHalPropConfig>>> HidlVhalClient::getAllPropConfigs() { in getAllPropConfigs() function in android::frameworks::automotive::vhal::HidlVhalClient 174 auto result = mHal->getAllPropConfigs([&halPropConfigs]( in getAllPropConfigs()
|
D | AidlVhalClient.cpp | 197 VhalResult<std::vector<std::unique_ptr<IHalPropConfig>>> AidlVhalClient::getAllPropConfigs() { in getAllPropConfigs() function in android::frameworks::automotive::vhal::AidlVhalClient 199 if (ScopedAStatus status = mHal->getAllPropConfigs(&configs); !status.isOk()) { in getAllPropConfigs()
|
/packages/services/Car/cpp/watchdog/server/tests/ |
D | MockVehicle.h | 35 MOCK_METHOD(ndk::ScopedAStatus, getAllPropConfigs,
|
D | MockVhalClient.h | 68 getAllPropConfigs, (), (override));
|
/packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/ |
D | Utils.java | 44 return vehicle.getAllPropConfigs() in isVhalPropertyAvailable()
|
/packages/services/Car/cpp/vhal/client/include/ |
D | IVhalClient.h | 189 getAllPropConfigs() = 0;
|
D | HidlVhalClient.h | 73 getAllPropConfigs() override;
|
D | AidlVhalClient.h | 88 getAllPropConfigs() override;
|
/packages/services/Car/cpp/vhal/client/test/ |
D | HidlVhalClientTest.cpp | 51 Return<void> getAllPropConfigs(IVehicle::getAllPropConfigs_cb callback) override { in getAllPropConfigs() function in android::frameworks::automotive::vhal::hidl_test::MockVhal 305 auto result = getClient()->getAllPropConfigs(); in TEST_F()
|
D | AidlVhalClientTest.cpp | 73 ScopedAStatus getAllPropConfigs(VehiclePropConfigs* returnConfigs) override { in getAllPropConfigs() function in android::frameworks::automotive::vhal::aidl_test::MockVhal 773 auto result = getClient()->getAllPropConfigs(); in TEST_F() 794 auto result = getClient()->getAllPropConfigs(); in TEST_F()
|
/packages/services/Car/cpp/security/vehicle_binding_util/tests/ |
D | VehicleBindingUtilTest.cpp | 88 MOCK_METHOD(VhalResult<std::vector<std::unique_ptr<IHalPropConfig>>>, getAllPropConfigs, (),
|
/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/ |
D | HidlMockedVehicleHal.java | 143 public synchronized ArrayList<VehiclePropConfig> getAllPropConfigs() { in getAllPropConfigs() method in HidlMockedVehicleHal
|
D | AidlMockedVehicleHal.java | 170 public VehiclePropConfigs getAllPropConfigs() throws RemoteException { in getAllPropConfigs() method in AidlMockedVehicleHal
|