Home
last modified time | relevance | path

Searched refs:getAllPropConfigs (Results 1 – 22 of 22) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DVehicleStubTest.java218 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/
DHidlVehicleStub.java148 public HalPropConfig[] getAllPropConfigs() throws RemoteException { in getAllPropConfigs() method in HidlVehicleStub
157 return vehiclePropConfigsToHalPropConfigs(mHidlVehicle.getAllPropConfigs()); in getAllPropConfigs()
163 return vehiclePropConfigsToHalPropConfigs(mHidlVehicle.getAllPropConfigs()); in getAllPropConfigs()
DVehicleStub.java137 public abstract HalPropConfig[] getAllPropConfigs() in getAllPropConfigs() method in VehicleStub
DAidlVehicleStub.java190 public HalPropConfig[] getAllPropConfigs() in getAllPropConfigs() method in AidlVehicleStub
194 mAidlVehicle.getAllPropConfigs(), /* keepSharedMemory= */ false); in getAllPropConfigs()
DCarShellCommand.java3136 HalPropConfig[] configs = mHal.getAllPropConfigs();
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DVehicleHalTest.java162 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));
DHalClientUnitTest.java205 when(mIVehicle.getAllPropConfigs()).thenReturn(configs); in testGetAllPropConfigs()
207 assertThat(mClient.getAllPropConfigs()).isEqualTo(configs); in testGetAllPropConfigs()
/packages/services/Car/service/src/com/android/car/hal/
DHalClient.java94 HalPropConfig[] getAllPropConfigs() in getAllPropConfigs() method in HalClient
96 return mVehicle.getAllPropConfigs(); in getAllPropConfigs()
DVehicleHal.java192 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/
DHidlVhalClient.cpp172 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()
DAidlVhalClient.cpp197 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/
DMockVehicle.h35 MOCK_METHOD(ndk::ScopedAStatus, getAllPropConfigs,
DMockVhalClient.h68 getAllPropConfigs, (), (override));
/packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
DUtils.java44 return vehicle.getAllPropConfigs() in isVhalPropertyAvailable()
/packages/services/Car/cpp/vhal/client/include/
DIVhalClient.h189 getAllPropConfigs() = 0;
DHidlVhalClient.h73 getAllPropConfigs() override;
DAidlVhalClient.h88 getAllPropConfigs() override;
/packages/services/Car/cpp/vhal/client/test/
DHidlVhalClientTest.cpp51 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()
DAidlVhalClientTest.cpp73 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/
DVehicleBindingUtilTest.cpp88 MOCK_METHOD(VhalResult<std::vector<std::unique_ptr<IHalPropConfig>>>, getAllPropConfigs, (),
/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/
DHidlMockedVehicleHal.java143 public synchronized ArrayList<VehiclePropConfig> getAllPropConfigs() { in getAllPropConfigs() method in HidlMockedVehicleHal
DAidlMockedVehicleHal.java170 public VehiclePropConfigs getAllPropConfigs() throws RemoteException { in getAllPropConfigs() method in AidlMockedVehicleHal