Home
last modified time | relevance | path

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

12

/packages/services/Car/service/src/com/android/car/hal/
DPropertyHalService.java122 void onPropertySetError(int property, int area, in onPropertySetError() method
445 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in PropertyHalService
453 listener.onPropertySetError(mgrPropId, error.areaId, error.errorCode); in onPropertySetError()
DHalClient.java257 callback.onPropertySetError((ArrayList<VehiclePropError>) msg.obj); in handleMessage()
280 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in HalClient.VehicleCallback
DHalClientCallback.java35 void onPropertySetError(ArrayList<VehiclePropError> errors); in onPropertySetError() method
DHalServiceBase.java95 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in HalServiceBase
DVehicleHal.java714 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in VehicleHal
753 service.onPropertySetError(propErrors); in onPropertySetError()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DVehicleHalTest.java688 mVehicleHal.onPropertySetError(errors);
691 verify(mPowerHalService).onPropertySetError(new ArrayList<VehiclePropError>(Arrays.asList(
693 verify(mPropertyHalService).onPropertySetError(new ArrayList<VehiclePropError>(
708 mVehicleHal.onPropertySetError(errors);
711 verify(mPowerHalService, never()).onPropertySetError(errors);
725 mVehicleHal.onPropertySetError(errors);
728 verify(mPowerHalService, never()).onPropertySetError(errors);
742 mHandler.post(() -> mVehicleHal.onPropertySetError(errors));
746 verify(mPowerHalService).onPropertySetError(errors);
DHalClientUnitTest.java253 callback.onPropertySetError(errors); in testInternalCallbackOnPropertySetError()
257 verify(mHalClientCallback).onPropertySetError(errors); in testInternalCallbackOnPropertySetError()
/packages/services/Car/service/src/com/android/car/
DAidlVehicleStub.java379 public void onPropertySetError(VehiclePropErrors errors) throws RemoteException { in onPropertySetError() method in AidlVehicleStub.AidlSubscriptionClient
387 mCallback.onPropertySetError(errorList); in onPropertySetError()
478 public void onPropertySetError(VehiclePropErrors errors) throws RemoteException { in onPropertySetError() method in AidlVehicleStub.GetSetValuesCallback
DHidlVehicleStub.java287 public void onPropertySetError(int errorCode, int propId, int areaId) { in onPropertySetError() method in HidlVehicleStub.HidlSubscriptionClient
294 mCallback.onPropertySetError(errors); in onPropertySetError()
DCarPropertyService.java708 public void onPropertySetError(int property, int areaId, int errorCode) { in onPropertySetError() method
/packages/services/Car/cpp/evs/apps/default/
DEvsVehicleListener.h46 void onPropertySetError( in onPropertySetError() function
/packages/services/Car/cpp/vhal/client/src/
DHidlVhalClient.cpp306 Return<void> SubscriptionCallback::onPropertySetError(StatusCode status, int32_t propId, in onPropertySetError() function in android::frameworks::automotive::vhal::SubscriptionCallback
315 mCallback->onPropertySetError(halPropErrors); in onPropertySetError()
DAidlVhalClient.cpp509 ScopedAStatus GetSetValueClient::onPropertySetError([[maybe_unused]] const VehiclePropErrors&) { in onPropertySetError() function in android::frameworks::automotive::vhal::GetSetValueClient
621 ScopedAStatus SubscriptionVehicleCallback::onPropertySetError(const VehiclePropErrors& errors) { in onPropertySetError() function in android::frameworks::automotive::vhal::SubscriptionVehicleCallback
641 mCallback->onPropertySetError(halPropErrors); in onPropertySetError()
/packages/services/Car/cpp/vhal/client/include/
DAidlVhalClient.h186 ndk::ScopedAStatus onPropertySetError(
249 ndk::ScopedAStatus onPropertySetError(
DIVhalClient.h52 virtual void onPropertySetError(const std::vector<HalPropError>& errors) = 0;
DHidlVhalClient.h136 android::hardware::Return<void> onPropertySetError(
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DVehicleStubTest.java1005 hidlCallback.onPropertySetError(TEST_STATUS, TEST_PROP, TEST_AREA); in testHidlVehicleCallbackOnPropertySetError()
1007 verify(callback).onPropertySetError(new ArrayList<VehiclePropError>(Arrays.asList(error))); in testHidlVehicleCallbackOnPropertySetError()
1069 aidlCallback.onPropertySetError(errors); in testAidlVehicleCallbackOnPropertySetErrorSmallData()
1071 verify(callback).onPropertySetError(new ArrayList<VehiclePropError>(Arrays.asList(error))); in testAidlVehicleCallbackOnPropertySetErrorSmallData()
1101 aidlCallback.onPropertySetError(errors); in testAidlVehicleCallbackOnPropertySetErrorLargeData()
1103 verify(callback).onPropertySetError(expectErrors); in testAidlVehicleCallbackOnPropertySetErrorLargeData()
/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.cpp201 mSubscriptionCallback->onPropertySetError(propErrors); in triggerSetErrorEvent()
230 void onPropertySetError(const std::vector<HalPropError>& errors) override { mErrors = errors; } in onPropertySetError() function in android::frameworks::automotive::vhal::aidl_test::MockSubscriptionCallback
/packages/services/Car/cpp/powerpolicy/server/src/
DCarPowerPolicyServer.h76 void onPropertySetError(const std::vector<android::frameworks::automotive::vhal::HalPropError>&
DCarPowerPolicyServer.cpp147 void PropertyChangeListener::onPropertySetError( in onPropertySetError() function in android::frameworks::automotive::powerpolicy::PropertyChangeListener
/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/
DHidlMockedVehicleHal.java134 callback.onPropertySetError(errorCode, propertyId, areaId); in injectError()
DAidlMockedVehicleHal.java160 callback.onPropertySetError(propErrors); in injectError()
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogProcessService.h217 void onPropertySetError(
DWatchdogProcessService.cpp1108 void WatchdogProcessService::PropertyChangeListener::onPropertySetError( in onPropertySetError() function in android::automotive::watchdog::WatchdogProcessService::PropertyChangeListener

12