/packages/services/Car/service/src/com/android/car/hal/ |
D | PropertyHalService.java | 122 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()
|
D | HalClient.java | 257 callback.onPropertySetError((ArrayList<VehiclePropError>) msg.obj); in handleMessage() 280 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in HalClient.VehicleCallback
|
D | HalClientCallback.java | 35 void onPropertySetError(ArrayList<VehiclePropError> errors); in onPropertySetError() method
|
D | HalServiceBase.java | 95 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in HalServiceBase
|
D | VehicleHal.java | 714 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/ |
D | VehicleHalTest.java | 688 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);
|
D | HalClientUnitTest.java | 253 callback.onPropertySetError(errors); in testInternalCallbackOnPropertySetError() 257 verify(mHalClientCallback).onPropertySetError(errors); in testInternalCallbackOnPropertySetError()
|
/packages/services/Car/service/src/com/android/car/ |
D | AidlVehicleStub.java | 379 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
|
D | HidlVehicleStub.java | 287 public void onPropertySetError(int errorCode, int propId, int areaId) { in onPropertySetError() method in HidlVehicleStub.HidlSubscriptionClient 294 mCallback.onPropertySetError(errors); in onPropertySetError()
|
D | CarPropertyService.java | 708 public void onPropertySetError(int property, int areaId, int errorCode) { in onPropertySetError() method
|
/packages/services/Car/cpp/evs/apps/default/ |
D | EvsVehicleListener.h | 46 void onPropertySetError( in onPropertySetError() function
|
/packages/services/Car/cpp/vhal/client/src/ |
D | HidlVhalClient.cpp | 306 Return<void> SubscriptionCallback::onPropertySetError(StatusCode status, int32_t propId, in onPropertySetError() function in android::frameworks::automotive::vhal::SubscriptionCallback 315 mCallback->onPropertySetError(halPropErrors); in onPropertySetError()
|
D | AidlVhalClient.cpp | 509 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/ |
D | AidlVhalClient.h | 186 ndk::ScopedAStatus onPropertySetError( 249 ndk::ScopedAStatus onPropertySetError(
|
D | IVhalClient.h | 52 virtual void onPropertySetError(const std::vector<HalPropError>& errors) = 0;
|
D | HidlVhalClient.h | 136 android::hardware::Return<void> onPropertySetError(
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/ |
D | VehicleStubTest.java | 1005 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/ |
D | HidlVhalClientTest.cpp | 110 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
|
D | AidlVhalClientTest.cpp | 201 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/ |
D | CarPowerPolicyServer.h | 76 void onPropertySetError(const std::vector<android::frameworks::automotive::vhal::HalPropError>&
|
D | CarPowerPolicyServer.cpp | 147 void PropertyChangeListener::onPropertySetError( in onPropertySetError() function in android::frameworks::automotive::powerpolicy::PropertyChangeListener
|
/packages/services/Car/tests/carservice_test/src/com/android/car/hal/test/ |
D | HidlMockedVehicleHal.java | 134 callback.onPropertySetError(errorCode, propertyId, areaId); in injectError()
|
D | AidlMockedVehicleHal.java | 160 callback.onPropertySetError(propErrors); in injectError()
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | WatchdogProcessService.h | 217 void onPropertySetError(
|
D | WatchdogProcessService.cpp | 1108 void WatchdogProcessService::PropertyChangeListener::onPropertySetError( in onPropertySetError() function in android::automotive::watchdog::WatchdogProcessService::PropertyChangeListener
|