Home
last modified time | relevance | path

Searched refs:toCarPropertyAsyncErrorCode (Results 1 – 8 of 8) sorted by relevance

/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/
DCarPropertyErrorCodesUnitTest.java100 assertThat(carPropertyErrorCodes.toCarPropertyAsyncErrorCode()).isEqualTo( in testCarPropertyErrorCodesStatusNotAvailableVendorError()
145 assertThat(carPropertyErrorCodes.toCarPropertyAsyncErrorCode()) in testConvertHalToCarPropertyManagerErrorStatus()
218 assertThat(errorCodes.toCarPropertyAsyncErrorCode()).isEqualTo( in testSubsystemNotConnected()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DAidlVehicleStubUnitTest.java499 .toCarPropertyAsyncErrorCode()).isEqualTo( in testGetAsyncAidlError()
522 .toCarPropertyAsyncErrorCode()).isEqualTo( in testGetAsyncAidlServiceSpecificExceptionInternalError()
549 .toCarPropertyAsyncErrorCode()).isEqualTo( in testGetAsyncAidlServiceSpecificExceptionNotAvailable()
563 .toCarPropertyAsyncErrorCode()).isEqualTo( in testGetAsyncAidlServiceSpecificExceptionNotAvailableDisabled()
577 .toCarPropertyAsyncErrorCode()).isEqualTo( in testGetAsyncAidlServiceSpecificExceptionNotAvailableSpeedLow()
591 .toCarPropertyAsyncErrorCode()).isEqualTo( in testGetAsyncAidlServiceSpecificExceptionNotAvailableSpeedHigh()
606 .toCarPropertyAsyncErrorCode()).isEqualTo( in testGetAsyncAidlServiceSpecificExceptionNotAvailablePoorVisibility()
620 .toCarPropertyAsyncErrorCode()).isEqualTo( in testGetAsyncAidlServiceSpecificExceptionNotAvailableSafety()
1145 .toCarPropertyAsyncErrorCode()).isEqualTo( in testSetAsyncRemoteException()
1180 .toCarPropertyAsyncErrorCode()).isEqualTo( in testSetAsyncServiceSpecificExceptionNotAvailable()
[all …]
DHidlVehicleStubUnitTest.java428 .toCarPropertyAsyncErrorCode()).isEqualTo( in testGetAsyncError()
487 .toCarPropertyAsyncErrorCode()).isEqualTo( in testGetAsyncOneOkayResultOneNoValue()
560 .toCarPropertyAsyncErrorCode()).isEqualTo( in testSetAsyncRemoteException()
597 .toCarPropertyAsyncErrorCode()).isEqualTo( in testSetAsyncServiceSpecificExceptionNotAvailable()
616 .toCarPropertyAsyncErrorCode()).isEqualTo( in testSetAsyncServiceSpecificExceptionInternal()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DPropertyHalServiceTest.java644 assertThat(result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()).isEqualTo( in testGetCarPropertyValuesAsync_retryAndTimeout()
664 assertThat(result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()).isEqualTo( in testGetCarPropertyValuesAsync_noResultTimeout()
695 assertThat(result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()).isEqualTo( in testGetCarPropertyValuesAsync_timeoutFromVehicleStub()
718 assertThat(result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()).isEqualTo( in testGetCarPropertyValuesAsync_errorResult()
744 assertThat(result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()).isEqualTo( in testGetCarPropertyValuesAsync_errorResultVendorErrorCode()
774 assertThat(result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()).isEqualTo( in testGetCarPropertyValuesAsync_propStatusUnavailable()
802 assertThat(result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()).isEqualTo( in testGetCarPropertyValuesAsync_propStatusError()
1013 assertThat(result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()) in testSetCarPropertyValuesAsync_noWaitForPropertyUpdate()
1054 assertThat(result1.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()) in testSetCarPropertyValuesAsync_noWaitForPropertyUpdateWithMultipleAreaRequests()
1059 assertThat(result2.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()) in testSetCarPropertyValuesAsync_noWaitForPropertyUpdateWithMultipleAreaRequests()
[all …]
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/fakevhal/
DFakeVehicleStubUnitTest.java680 expect.that(asyncResult.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()) in testGetAsyncMethodForSingleValueNoReadPermissionError()
701 expect.that(asyncResult.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()) in testGetAsyncForPropNotAvailable()
721 expect.that(asyncResult.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()) in testGetAsyncForSpecialPropInternalError()
751 expect.that(asyncResult1.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode()) in testGetAsyncForMultipleGetRequestsSuccessAndError()
1059 .toCarPropertyAsyncErrorCode()) in testSetAsyncGlobalPropWithAreaIdSetValueOutOfRange()
1083 .toCarPropertyAsyncErrorCode()) in testSetAsyncForSpecialPropRemoteException()
1118 .toCarPropertyAsyncErrorCode()) in testSetAsyncOnMultipleRequests()
1124 .toCarPropertyAsyncErrorCode()) in testSetAsyncOnMultipleRequests()
DSimulationVehicleStubUnitTest.java551 if (result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode() in testGetAsync_withOneServiceSpecificError()
575 if (result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode() in testGetAsync_withOneRemoteException()
630 if (result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode() in testSetAsync_withOneServiceSpecificError()
662 if (result.getCarPropertyErrorCodes().toCarPropertyAsyncErrorCode() in testSetAsync_withOneRemoteException()
/packages/services/Car/car-lib/src/com/android/car/internal/property/
DCarPropertyErrorCodes.java261 public @CarPropertyAsyncErrorCode int toCarPropertyAsyncErrorCode() { in toCarPropertyAsyncErrorCode() method in CarPropertyErrorCodes
/packages/services/Car/car-lib/src/android/car/hardware/property/
DCarPropertyManager.java575 return mCarPropertyErrorCodes.toCarPropertyAsyncErrorCode(); in getErrorCode()