/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/ |
D | CarPropertyErrorCodesUnitTest.java | 46 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusOkNoErrors() 59 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusInternalError() 72 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusNotAvailable() 87 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusNotAvailableSpeedLow() 102 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusNotAvailableVendorError() 115 assertThat(carPropertyErrorCodes.getVendorErrorCode()).isEqualTo(0); in testConvertHalToCarPropertyManagerErrorStatusOK() 150 assertThat(carPropertyErrorCodes.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testConvertHalToCarPropertyManagerErrorStatus()
|
D | CarPropertyManagerUnitTest.java | 463 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_internalErrorEqualAfterU_withVendorErrorCode() 641 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_notAvailableEqualAfterU_withVendorErrorCode() 678 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_notAvailableDisabledAfterU_withVendorErrorCode() 715 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_notAvailableSafetyAfterU_withVendorErrorCode() 752 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_notAvailableSpeedHighAfterU_withVendorErrorCode() 789 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_notAvailableSpeedLowAfterU_withVendorErrorCode() 1238 assertThat(error.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testOnGetValueResult_onFailure() 1424 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testSetProperty_notAvailableAfterU_withVendorErrorCode() 1438 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testSetProperty_internalErrorAfterU_withVendorErrorCode() 1480 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testSetProperty_notAvailableDisabledAfterU_withVendorErrorCode() [all …]
|
/packages/services/Car/service/src/com/android/car/ |
D | VehicleStub.java | 122 public int getVendorErrorCode() { in getVendorErrorCode() method in VehicleStub.GetVehicleStubAsyncResult 123 return mCarPropertyErrorCodes.getVendorErrorCode(); in getVendorErrorCode() 170 public int getVendorErrorCode() { in getVendorErrorCode() method in VehicleStub.SetVehicleStubAsyncResult 171 return mCarPropertyErrorCodes.getVendorErrorCode(); in getVendorErrorCode()
|
D | AidlVehicleStub.java | 1118 errorCodes.getCarPropertyManagerErrorCode(), errorCodes.getVendorErrorCode()); in handleAsyncExceptionFromVhal()
|
/packages/services/Car/tests/carservice_test/src/com/android/car/ |
D | CarPropertyManagerTest.java | 1285 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testGetPropertiesAsync() 1292 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testGetPropertiesAsync() 1297 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testGetPropertiesAsync() 1302 assertThat(error.getVendorErrorCode()).isEqualTo(VENDOR_CODE_FOR_INTERNAL_ERROR); in testGetPropertiesAsync() 1397 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testSetPropertiesAsync() 1403 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testSetPropertiesAsync() 1408 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testSetPropertiesAsync() 1413 assertThat(error.getVendorErrorCode()).isEqualTo(VENDOR_CODE_FOR_NOT_AVAILABLE); in testSetPropertiesAsync() 1426 assertThat(thrown.getVendorErrorCode()).isEqualTo(VENDOR_CODE_FOR_NOT_AVAILABLE); in testGetVendorErrorCode_forGetProperty_throwsNotAvailable_EqualAfterR() 1437 assertThat(thrown.getVendorErrorCode()).isEqualTo(VENDOR_CODE_FOR_INTERNAL_ERROR); in testGetVendorErrorCode_forGetProperty_throwsInternalError_EqualAfterR() [all …]
|
/packages/services/Car/car-lib/src/com/android/car/internal/property/ |
D | CarPropertyErrorCodes.java | 102 public int getVendorErrorCode() { in getVendorErrorCode() method in CarPropertyErrorCodes 189 sj.add("vendorErrorCode: " + carPropertyErrorCodes.getVendorErrorCode()); in toString()
|
/packages/services/Car/car-lib/src/android/car/hardware/property/ |
D | CarInternalErrorException.java | 53 public int getVendorErrorCode() { in getVendorErrorCode() method in CarInternalErrorException
|
D | PropertyNotAvailableException.java | 72 public int getVendorErrorCode() { in getVendorErrorCode() method in PropertyNotAvailableException
|
D | CarPropertyManager.java | 560 public int getVendorErrorCode() { in getVendorErrorCode() method in CarPropertyManager.PropertyAsyncError 561 return mCarPropertyErrorCodes.getVendorErrorCode(); in getVendorErrorCode()
|
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
D | CarPropertyManagerTest.java | 96 assertThat(thrown.getVendorErrorCode()).isEqualTo(EXPECTED_VENDOR_ERROR_CODE); in testGetProperty_withVendorPropertyId_throws() 110 assertThat(thrown.getVendorErrorCode()).isEqualTo(EXPECTED_VENDOR_ERROR_CODE); in testSetProperty_withVendorPropertyId_throws()
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/property/ |
D | PropertyTestFragment.java | 124 + propertyAsyncError.getVendorErrorCode(), Toast.LENGTH_SHORT).show(); 142 + propertyAsyncError.getVendorErrorCode(), Toast.LENGTH_SHORT).show();
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | PropertyHalServiceTest.java | 687 assertThat(result.getCarPropertyErrorCodes().getVendorErrorCode()) in testGetCarPropertyValuesAsync_errorResultVendorErrorCode() 717 assertThat(result.getCarPropertyErrorCodes().getVendorErrorCode()).isEqualTo(0); in testGetCarPropertyValuesAsync_propStatusUnavailable() 745 assertThat(result.getCarPropertyErrorCodes().getVendorErrorCode()).isEqualTo(0); in testGetCarPropertyValuesAsync_propStatusError() 2170 .getVendorErrorCode()) in testSetCarPropertyValuesAsync_onPropertySetError()
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | PropertyHalService.java | 1594 carPropertyErrorCodes.getVendorErrorCode(), in onPropertySetError()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/ |
D | AidlVehicleStubUnitTest.java | 1252 assertThat(argumentCaptor.getValue().get(0).getVendorErrorCode()).isEqualTo(0x1234); in testSetAsyncServiceSpecificExceptionVendorErrorCode()
|
/packages/services/Car/car-lib-module/api/ |
D | system-current.txt | 1268 method public int getVendorErrorCode(); 1272 method public int getVendorErrorCode(); 1467 method public int getVendorErrorCode();
|
/packages/services/Car/car-lib/api/ |
D | system-current.txt | 1268 method public int getVendorErrorCode(); 1272 method public int getVendorErrorCode(); 1467 method public int getVendorErrorCode();
|
D | test-current.txt | 1342 method public int getVendorErrorCode(); 1346 method public int getVendorErrorCode(); 1541 method public int getVendorErrorCode();
|
D | system-lint-baseline.txt | 2782 UnflaggedApi: android.car.hardware.property.CarInternalErrorException#getVendorErrorCode(): 2783 …th @FlaggedApi: method android.car.hardware.property.CarInternalErrorException.getVendorErrorCode() 2784 …aggedApi: android.car.hardware.property.CarPropertyManager.PropertyAsyncError#getVendorErrorCode(): 2785 …pi: method android.car.hardware.property.CarPropertyManager.PropertyAsyncError.getVendorErrorCode() 2956 UnflaggedApi: android.car.hardware.property.PropertyNotAvailableException#getVendorErrorCode(): 2957 …FlaggedApi: method android.car.hardware.property.PropertyNotAvailableException.getVendorErrorCode()
|