/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/ |
D | CarPropertyErrorCodesUnitTest.java | 53 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusOkNoErrors() 65 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusInternalError() 77 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusNotAvailable() 89 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusNotAvailableSpeedLow() 102 assertThat(carPropertyErrorCodes.getVendorErrorCode()) in testCarPropertyErrorCodesStatusNotAvailableVendorError() 114 assertThat(carPropertyErrorCodes.getVendorErrorCode()).isEqualTo(0); in testConvertHalToCarPropertyManagerErrorStatusOK() 147 assertThat(carPropertyErrorCodes.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testConvertHalToCarPropertyManagerErrorStatus() 215 assertThat(errorCodes.getVendorErrorCode()).isEqualTo(0); in testSubsystemNotConnected() 227 assertThat(exception.getVendorErrorCode()).isEqualTo(0); in testSubsystemNotConnected()
|
D | CarPropertyManagerUnitTest.java | 471 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_internalErrorEqualAfterU_withVendorErrorCode() 649 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_notAvailableEqualAfterU_withVendorErrorCode() 686 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_notAvailableDisabledAfterU_withVendorErrorCode() 723 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_notAvailableSafetyAfterU_withVendorErrorCode() 760 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_notAvailableSpeedHighAfterU_withVendorErrorCode() 797 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testGetProperty_notAvailableSpeedLowAfterU_withVendorErrorCode() 1242 assertThat(error.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testOnGetValueResult_onFailure() 1453 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testSetProperty_notAvailableAfterU_withVendorErrorCode() 1467 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testSetProperty_internalErrorAfterU_withVendorErrorCode() 1509 assertThat(exception.getVendorErrorCode()).isEqualTo(VENDOR_ERROR_CODE); in testSetProperty_notAvailableDisabledAfterU_withVendorErrorCode() [all …]
|
/packages/services/Car/tests/CarServiceTest/src/com/android/car/ |
D | CarPropertyManagerTest.java | 1278 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testGetPropertiesAsync() 1285 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testGetPropertiesAsync() 1290 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testGetPropertiesAsync() 1295 assertThat(error.getVendorErrorCode()).isEqualTo(VENDOR_CODE_FOR_INTERNAL_ERROR); in testGetPropertiesAsync() 1390 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testSetPropertiesAsync() 1396 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testSetPropertiesAsync() 1401 assertThat(error.getVendorErrorCode()).isEqualTo(0); in testSetPropertiesAsync() 1406 assertThat(error.getVendorErrorCode()).isEqualTo(VENDOR_CODE_FOR_NOT_AVAILABLE); in testSetPropertiesAsync() 1419 assertThat(thrown.getVendorErrorCode()).isEqualTo(VENDOR_CODE_FOR_NOT_AVAILABLE); in testGetVendorErrorCode_forGetProperty_throwsNotAvailable_EqualAfterR() 1430 assertThat(thrown.getVendorErrorCode()).isEqualTo(VENDOR_CODE_FOR_INTERNAL_ERROR); in testGetVendorErrorCode_forGetProperty_throwsInternalError_EqualAfterR() [all …]
|
/packages/services/Car/car-lib/src/android/car/hardware/property/ |
D | CarInternalErrorException.java | 59 public int getVendorErrorCode() { in getVendorErrorCode() method in CarInternalErrorException
|
D | PropertyNotAvailableException.java | 77 public int getVendorErrorCode() { in getVendorErrorCode() method in PropertyNotAvailableException
|
D | CarPropertyManager.java | 587 public int getVendorErrorCode() { in getVendorErrorCode() method in CarPropertyManager.PropertyAsyncError 588 return mCarPropertyErrorCodes.getVendorErrorCode(); in getVendorErrorCode()
|
/packages/services/Car/tests/CarExtendedApiTest/src/android/car/extendedapitest/ |
D | CarPropertyManagerTest.java | 97 assertThat(thrown.getVendorErrorCode()).isEqualTo(EXPECTED_VENDOR_ERROR_CODE); in testGetProperty_withVendorPropertyId_throws() 111 assertThat(thrown.getVendorErrorCode()).isEqualTo(EXPECTED_VENDOR_ERROR_CODE); in testSetProperty_withVendorPropertyId_throws()
|
/packages/services/Car/car-lib/src/com/android/car/internal/property/ |
D | CarPropertyErrorCodes.java | 240 public int getVendorErrorCode() { in getVendorErrorCode() method in CarPropertyErrorCodes 380 sj.add("vendorErrorCode: " + carPropertyErrorCodes.getVendorErrorCode()); in carPropertyErrorCodestoString()
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/property/ |
D | PropertyTestFragment.java | 150 propertyAsyncError.getVendorErrorCode())); 178 propertyAsyncError.getVendorErrorCode()));
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | PropertyHalServiceTest.java | 746 assertThat(result.getCarPropertyErrorCodes().getVendorErrorCode()) in testGetCarPropertyValuesAsync_errorResultVendorErrorCode() 776 assertThat(result.getCarPropertyErrorCodes().getVendorErrorCode()).isEqualTo(0); in testGetCarPropertyValuesAsync_propStatusUnavailable() 804 assertThat(result.getCarPropertyErrorCodes().getVendorErrorCode()).isEqualTo(0); in testGetCarPropertyValuesAsync_propStatusError() 2228 .getVendorErrorCode()) in testSetCarPropertyValuesAsync_onPropertySetError()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/ |
D | AidlVehicleStubUnitTest.java | 1294 .getCarPropertyErrorCodes().getVendorErrorCode()).isEqualTo(0x1234); in testSetAsyncServiceSpecificExceptionVendorErrorCode()
|
/packages/services/Car/car-lib/api/ |
D | system-current.txt | 1160 method public int getVendorErrorCode(); 1164 method public int getVendorErrorCode(); 1376 method public int getVendorErrorCode();
|
D | test-current.txt | 1234 method public int getVendorErrorCode(); 1238 method public int getVendorErrorCode(); 1450 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()
|
/packages/services/Car/car-lib-module/api/ |
D | system-current.txt | 1160 method public int getVendorErrorCode(); 1164 method public int getVendorErrorCode(); 1376 method public int getVendorErrorCode();
|