Home
last modified time | relevance | path

Searched refs:onPropertySetError (Results 1 – 25 of 28) sorted by relevance

12

/packages/services/Car/service/src/com/android/car/hal/
DVehicleHalCallback.java35 void onPropertySetError(ArrayList<VehiclePropError> errors); in onPropertySetError() method
DHalServiceBase.java102 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in HalServiceBase
DPropertyHalService.java1034 void onPropertySetError(int property, int area, in onPropertySetError() method
1546 public void onPropertySetError(ArrayList<VehiclePropError> vehiclePropErrors) { in onPropertySetError() method in PropertyHalService
1563 propertyHalListener.onPropertySetError(mgrPropId, vehiclePropError.areaId, in onPropertySetError()
DVehicleHal.java421 service.onPropertySetError(propErrors); in handleOnPropertySetError()
1213 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in VehicleHal
DUserHalService.java222 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in UserHalService
/packages/services/Car/cpp/evs/apps/default/inc/
DEvsVehicleListener.h47 void onPropertySetError( in onPropertySetError() function
/packages/services/Car/cpp/vhal/client/src/
DHidlVhalClient.cpp304 Return<void> SubscriptionCallback::onPropertySetError(StatusCode status, int32_t propId, in onPropertySetError() function in android::frameworks::automotive::vhal::SubscriptionCallback
313 mCallback->onPropertySetError(halPropErrors); in onPropertySetError()
DAidlVhalClient.cpp516 ScopedAStatus GetSetValueClient::onPropertySetError([[maybe_unused]] const VehiclePropErrors&) { in onPropertySetError() function in android::frameworks::automotive::vhal::GetSetValueClient
632 ScopedAStatus SubscriptionVehicleCallback::onPropertySetError(const VehiclePropErrors& errors) { in onPropertySetError() function in android::frameworks::automotive::vhal::SubscriptionVehicleCallback
652 mCallback->onPropertySetError(halPropErrors); in onPropertySetError()
/packages/services/Car/cpp/vhal/client/include/
DAidlVhalClient.h186 ndk::ScopedAStatus onPropertySetError(
249 ndk::ScopedAStatus onPropertySetError(
DHidlVhalClient.h134 android::hardware::Return<void> onPropertySetError(
DIVhalClient.h52 virtual void onPropertySetError(const std::vector<HalPropError>& errors) = 0;
/packages/services/Car/service/src/com/android/car/
DHidlVehicleStub.java382 public void onPropertySetError(int errorCode, int propId, int areaId) { in onPropertySetError() method in HidlVehicleStub.HidlSubscriptionClient
389 mCallback.onPropertySetError(errors); in onPropertySetError()
DAidlVehicleStub.java628 public void onPropertySetError(VehiclePropErrors errors) throws RemoteException { in onPropertySetError() method in AidlVehicleStub.AidlSubscriptionClient
636 mCallback.onPropertySetError(errorList); in onPropertySetError()
738 public void onPropertySetError(VehiclePropErrors errors) throws RemoteException { in onPropertySetError() method in AidlVehicleStub.GetSetValuesCallback
DCarPropertyService.java975 public void onPropertySetError(int property, int areaId, int errorCode) { in onPropertySetError() method
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DVehicleHalTest.java1263 mVehicleHal.onPropertySetError(errors);
1266 verify(mPowerHalService, timeout(WAIT_TIMEOUT_MS)).onPropertySetError(
1268 verify(mPropertyHalService, timeout(WAIT_TIMEOUT_MS)).onPropertySetError(
1283 mVehicleHal.onPropertySetError(errors);
1286 verify(mPowerHalService, after(100).never()).onPropertySetError(errors);
1300 mVehicleHal.onPropertySetError(errors);
1303 verify(mPowerHalService, after(100).never()).onPropertySetError(errors);
1317 mHandler.post(() -> mVehicleHal.onPropertySetError(errors));
1321 verify(mPowerHalService, timeout(WAIT_TIMEOUT_MS)).onPropertySetError(errors);
DPropertyHalServiceTest.java2160 serviceWrap.get(0).onPropertySetError(vehiclePropErrors); in testSetCarPropertyValuesAsync_onPropertySetError()
2481 mPropertyHalService.onPropertySetError(vehiclePropErrors); in testOnPropertySetError()
2483 verify(mPropertyHalListener).onPropertySetError(HVAC_TEMPERATURE_SET, 1, in testOnPropertySetError()
2485 verify(mPropertyHalListener).onPropertySetError(PERF_VEHICLE_SPEED, 0, in testOnPropertySetError()
/packages/services/Car/cpp/vhal/client/test/
DHidlVhalClientTest.cpp110 mSubscribedCallback->onPropertySetError(status, propId, areaId); in triggerSetErrorEvent()
132 void onPropertySetError(const std::vector<HalPropError>& errors) override { mErrors = errors; } in onPropertySetError() function in android::frameworks::automotive::vhal::hidl_test::MockSubscriptionCallback
DAidlVhalClientTest.cpp204 mSubscriptionCallback->onPropertySetError(propErrors); in triggerSetErrorEvent()
233 void onPropertySetError(const std::vector<HalPropError>& errors) override { mErrors = errors; } in onPropertySetError() function in android::frameworks::automotive::vhal::aidl_test::MockSubscriptionCallback
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DAidlVehicleStubUnitTest.java1313 aidlCallback.onPropertySetError(errors); in testAidlVehicleCallbackOnPropertySetErrorSmallData()
1315 verify(callback).onPropertySetError(new ArrayList<VehiclePropError>(Arrays.asList(error))); in testAidlVehicleCallbackOnPropertySetErrorSmallData()
1345 aidlCallback.onPropertySetError(errors); in testAidlVehicleCallbackOnPropertySetErrorLargeData()
1347 verify(callback).onPropertySetError(expectErrors); in testAidlVehicleCallbackOnPropertySetErrorLargeData()
DHidlVehicleStubUnitTest.java657 hidlCallback.onPropertySetError(TEST_STATUS, TEST_PROP, TEST_AREA); in testHidlVehicleCallbackOnPropertySetError()
659 verify(callback).onPropertySetError(new ArrayList<VehiclePropError>(Arrays.asList(error))); in testHidlVehicleCallbackOnPropertySetError()
DCarPropertyServiceUnitTest.java1172 mService.onPropertySetError(propertyId, areaId, errorCode); in testOnPropertySetError()
1194 mService.onPropertySetError(propertyId, areaId, errorCode); in testOnPropertySetError_unregisterProperty()
1201 mService.onPropertySetError(propertyId, areaId, errorCode); in testOnPropertySetError_unregisterProperty()
/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/
DHidlMockedVehicleHal.java158 callback.onPropertySetError(errorCode, propertyId, areaId); in injectError()
DAidlMockedVehicleHal.java184 callback.onPropertySetError(propErrors); in injectError()
/packages/services/Car/cpp/powerpolicy/server/src/
DCarPowerPolicyServer.h78 void onPropertySetError(const std::vector<android::frameworks::automotive::vhal::HalPropError>&
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogProcessService.h232 void onPropertySetError(

12