Searched refs:carPropertyErrorCodes (Results 1 – 9 of 9) sorted by relevance
/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/ |
D | CarPropertyErrorCodesUnitTest.java | 49 CarPropertyErrorCodes carPropertyErrorCodes = in testCarPropertyErrorCodesStatusOkNoErrors() local 52 assertThat(carPropertyErrorCodes.isOkay()).isTrue(); in testCarPropertyErrorCodesStatusOkNoErrors() 53 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusOkNoErrors() 55 assertThat(carPropertyErrorCodes.getSystemErrorCode()) in testCarPropertyErrorCodesStatusOkNoErrors() 61 CarPropertyErrorCodes carPropertyErrorCodes = in testCarPropertyErrorCodesStatusInternalError() local 64 assertThat(carPropertyErrorCodes.isOkay()).isFalse(); in testCarPropertyErrorCodesStatusInternalError() 65 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusInternalError() 67 assertThat(carPropertyErrorCodes.getSystemErrorCode()) in testCarPropertyErrorCodesStatusInternalError() 73 CarPropertyErrorCodes carPropertyErrorCodes = in testCarPropertyErrorCodesStatusNotAvailable() local 76 assertThat(carPropertyErrorCodes.isOkay()).isFalse(); in testCarPropertyErrorCodesStatusNotAvailable() [all …]
|
/packages/services/Car/car-lib/src/com/android/car/internal/property/ |
D | GetSetValueResult.java | 43 @NonNull CarPropertyErrorCodes carPropertyErrorCodes, long updateTimestampNanos) { in GetSetValueResult() argument 47 mCarPropertyErrorCodes = carPropertyErrorCodes; in GetSetValueResult() 55 CarPropertyErrorCodes carPropertyErrorCodes = CarPropertyErrorCodes.STATUS_OK_NO_ERROR; in newGetValueResult() local 57 carPropertyErrorCodes, /* updateTimestampNanos= */ 0); in newGetValueResult() 64 @NonNull CarPropertyErrorCodes carPropertyErrorCodes) { in newErrorResult() argument 66 carPropertyErrorCodes, /* updateTimestampNanos= */ 0); in newErrorResult() 74 CarPropertyErrorCodes carPropertyErrorCodes = CarPropertyErrorCodes.STATUS_OK_NO_ERROR; in newSetValueResult() local 76 carPropertyErrorCodes, updateTimestampNanos); in newSetValueResult() 83 @NonNull CarPropertyErrorCodes carPropertyErrorCodes) { in newErrorSetValueResult() argument 85 carPropertyErrorCodes, /* updateTimestampNanos= */ 0); in newErrorSetValueResult() [all …]
|
D | CarPropertyErrorCodes.java | 377 CarPropertyErrorCodes carPropertyErrorCodes) { in carPropertyErrorCodestoString() argument 379 sj.add("cpmErrorCode: " + carPropertyErrorCodes.mCarPropertyManagerErrorCode); in carPropertyErrorCodestoString() 380 sj.add("vendorErrorCode: " + carPropertyErrorCodes.getVendorErrorCode()); in carPropertyErrorCodestoString() 381 sj.add("systemErrorCode: " + carPropertyErrorCodes.getSystemErrorCode()); in carPropertyErrorCodestoString()
|
/packages/services/Car/service/src/com/android/car/ |
D | HidlVehicleStub.java | 243 CarPropertyErrorCodes carPropertyErrorCodes = in getAsync() 245 callGetAsyncErrorCallback(carPropertyErrorCodes, serviceRequestId, in getAsync() 282 CarPropertyErrorCodes carPropertyErrorCodes = in setAsync() 285 carPropertyErrorCodes, in setAsync()
|
D | AidlVehicleStub.java | 1113 CarPropertyErrorCodes carPropertyErrorCodes = in toVehicleStubResult() local 1115 return new GetVehicleStubAsyncResult(serviceRequestId, carPropertyErrorCodes); in toVehicleStubResult() 1163 CarPropertyErrorCodes carPropertyErrorCodes = in toVehicleStubResult() local 1165 return new SetVehicleStubAsyncResult(serviceRequestId, carPropertyErrorCodes); in toVehicleStubResult() 1240 CarPropertyErrorCodes carPropertyErrorCodes = in getOrSetAsync() 1243 carPropertyErrorCodes, asyncResultsHandler); in getOrSetAsync()
|
/packages/services/Car/service/src/com/android/car/hal/fakevhal/ |
D | VehicleStubWrapper.java | 421 CarPropertyErrorCodes carPropertyErrorCodes = in getAsync() 424 carPropertyErrorCodes); in getAsync() 457 CarPropertyErrorCodes carPropertyErrorCodes = in setAsync() 459 result = new SetVehicleStubAsyncResult(serviceRequestId, carPropertyErrorCodes); in setAsync()
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | PropertyHalService.java | 2184 CarPropertyErrorCodes carPropertyErrorCodes = in onPropertySetError() local 2187 carPropertyErrorCodes); in onPropertySetError() 2190 carPropertyErrorCodes, pendingRequest); in onPropertySetError()
|
/packages/services/Car/car-lib/src/android/car/hardware/property/ |
D | CarPropertyManager.java | 614 CarPropertyErrorCodes carPropertyErrorCodes) { in PropertyAsyncError() argument 618 mCarPropertyErrorCodes = carPropertyErrorCodes; in PropertyAsyncError()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | PropertyHalServiceTest.java | 313 CarPropertyErrorCodes carPropertyErrorCodes, HalPropValue propValue, boolean get) { in deliverResult() argument 342 serviceRequestId, carPropertyErrorCodes)); in deliverResult() 346 serviceRequestId, carPropertyErrorCodes)); in deliverResult()
|