Home
last modified time | relevance | path

Searched refs:vehiclePropErrors (Results 1 – 2 of 2) sorted by relevance

/packages/services/Car/service/src/com/android/car/hal/
DPropertyHalService.java1546 public void onPropertySetError(ArrayList<VehiclePropError> vehiclePropErrors) { in onPropertySetError() argument
1552 for (int i = 0; i < vehiclePropErrors.size(); i++) { in onPropertySetError()
1553 VehiclePropError vehiclePropError = vehiclePropErrors.get(i); in onPropertySetError()
1570 for (int i = 0; i < vehiclePropErrors.size(); i++) { in onPropertySetError()
1571 VehiclePropError vehiclePropError = vehiclePropErrors.get(i); in onPropertySetError()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DPropertyHalServiceTest.java2147 ArrayList<VehiclePropError> vehiclePropErrors = new ArrayList<>(); in testSetCarPropertyValuesAsync_onPropertySetError() local
2157 vehiclePropErrors.add(error1); in testSetCarPropertyValuesAsync_onPropertySetError()
2158 vehiclePropErrors.add(error2); in testSetCarPropertyValuesAsync_onPropertySetError()
2160 serviceWrap.get(0).onPropertySetError(vehiclePropErrors); in testSetCarPropertyValuesAsync_onPropertySetError()
2468 ArrayList<VehiclePropError> vehiclePropErrors = new ArrayList<>(); in testOnPropertySetError() local
2477 vehiclePropErrors.add(error1); in testOnPropertySetError()
2478 vehiclePropErrors.add(error2); in testOnPropertySetError()
2481 mPropertyHalService.onPropertySetError(vehiclePropErrors); in testOnPropertySetError()