Home
last modified time | relevance | path

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

/frameworks/base/core/tests/BroadcastRadioTests/src/com/android/server/broadcastradio/aidl/
DConversionUtilsTest.java228 ServiceSpecificException halException = new ServiceSpecificException(Result.CANCELED); in throwOnError_withCancelException() local
230 RuntimeException thrown = ConversionUtils.throwOnError(halException, "tune"); in throwOnError_withCancelException()
238 ServiceSpecificException halException = new ServiceSpecificException( in throwOnError_withInvalidArgumentException() local
241 RuntimeException thrown = ConversionUtils.throwOnError(halException, "tune"); in throwOnError_withInvalidArgumentException()
249 ServiceSpecificException halException = new ServiceSpecificException(Result.TIMEOUT); in throwOnError_withTimeoutException() local
251 RuntimeException thrown = ConversionUtils.throwOnError(halException, "seek"); in throwOnError_withTimeoutException()
/frameworks/base/services/core/java/com/android/server/broadcastradio/aidl/
DConversionUtils.java101 static RuntimeException throwOnError(RuntimeException halException, String action) { in throwOnError() argument
102 if (!(halException instanceof ServiceSpecificException)) { in throwOnError()
106 int result = ((ServiceSpecificException) halException).errorCode; in throwOnError()