/packages/services/Car/service/src/com/android/car/hal/ |
D | VehicleHalCallback.java | 35 void onPropertySetError(ArrayList<VehiclePropError> errors); in onPropertySetError() method
|
D | HalServiceBase.java | 102 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in HalServiceBase
|
D | PropertyHalService.java | 1034 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()
|
D | VehicleHal.java | 421 service.onPropertySetError(propErrors); in handleOnPropertySetError() 1213 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in VehicleHal
|
D | UserHalService.java | 222 public void onPropertySetError(ArrayList<VehiclePropError> errors) { in onPropertySetError() method in UserHalService
|
/packages/services/Car/cpp/evs/apps/default/inc/ |
D | EvsVehicleListener.h | 47 void onPropertySetError( in onPropertySetError() function
|
/packages/services/Car/cpp/vhal/client/src/ |
D | HidlVhalClient.cpp | 304 Return<void> SubscriptionCallback::onPropertySetError(StatusCode status, int32_t propId, in onPropertySetError() function in android::frameworks::automotive::vhal::SubscriptionCallback 313 mCallback->onPropertySetError(halPropErrors); in onPropertySetError()
|
D | AidlVhalClient.cpp | 516 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/ |
D | AidlVhalClient.h | 186 ndk::ScopedAStatus onPropertySetError( 249 ndk::ScopedAStatus onPropertySetError(
|
D | HidlVhalClient.h | 134 android::hardware::Return<void> onPropertySetError(
|
D | IVhalClient.h | 52 virtual void onPropertySetError(const std::vector<HalPropError>& errors) = 0;
|
/packages/services/Car/service/src/com/android/car/ |
D | HidlVehicleStub.java | 382 public void onPropertySetError(int errorCode, int propId, int areaId) { in onPropertySetError() method in HidlVehicleStub.HidlSubscriptionClient 389 mCallback.onPropertySetError(errors); in onPropertySetError()
|
D | AidlVehicleStub.java | 628 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
|
D | CarPropertyService.java | 975 public void onPropertySetError(int property, int areaId, int errorCode) { in onPropertySetError() method
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | VehicleHalTest.java | 1263 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);
|
D | PropertyHalServiceTest.java | 2160 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/ |
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 | 204 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/ |
D | AidlVehicleStubUnitTest.java | 1313 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()
|
D | HidlVehicleStubUnitTest.java | 657 hidlCallback.onPropertySetError(TEST_STATUS, TEST_PROP, TEST_AREA); in testHidlVehicleCallbackOnPropertySetError() 659 verify(callback).onPropertySetError(new ArrayList<VehiclePropError>(Arrays.asList(error))); in testHidlVehicleCallbackOnPropertySetError()
|
D | CarPropertyServiceUnitTest.java | 1172 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/ |
D | HidlMockedVehicleHal.java | 158 callback.onPropertySetError(errorCode, propertyId, areaId); in injectError()
|
D | AidlMockedVehicleHal.java | 184 callback.onPropertySetError(propErrors); in injectError()
|
/packages/services/Car/cpp/powerpolicy/server/src/ |
D | CarPowerPolicyServer.h | 78 void onPropertySetError(const std::vector<android::frameworks::automotive::vhal::HalPropError>&
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | WatchdogProcessService.h | 232 void onPropertySetError(
|