Home
last modified time | relevance | path

Searched refs:throwable (Results 1 – 9 of 9) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandInterrupterTest.java175 thread.setUncaughtExceptionHandler((t, throwable) -> throwableRef.set(throwable)); in execute()
179 Throwable throwable = throwableRef.get(); in execute() local
180 if (throwable != null) { in execute()
181 throw Throwables.propagate(throwable); in execute()
/tools/tradefederation/core/src/com/android/tradefed/testtype/
DGTest.java348 Throwable throwable = null; in run() local
352 throwable = t; in run()
355 if (!(throwable instanceof DeviceNotAvailableException)) { in run()
/tools/tradefederation/core/src/com/android/tradefed/result/
DInvocationToJUnitResultForwarder.java66 AssumptionViolatedException throwable = new AssumptionViolatedException(trace); in testAssumptionFailure() local
67 mJUnitListener.addError(test, throwable); in testAssumptionFailure()
DJUnitToInvocationResultForwarder.java154 private String getStackTrace(Throwable throwable) { in getStackTrace() argument
158 throwable.printStackTrace(bytePrintStream); in getStackTrace()
/tools/tradefederation/core/src/com/android/tradefed/util/
DStreamUtil.java209 public static String getStackTrace(Throwable throwable) { in getStackTrace() argument
213 throwable.printStackTrace(bytePrintStream); in getStackTrace()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DTestInvocationTest.java1114 InvocationStatus status, Throwable throwable, boolean stubFailures) throws IOException { in setupMockListeners() argument
1123 if (!(throwable instanceof BuildRetrievalError)) { in setupMockListeners()
1146 mMockTestListener.invocationFailed(EasyMock.eq(throwable)); in setupMockListeners()
1147 mMockSummaryListener.invocationFailed(EasyMock.eq(throwable)); in setupMockListeners()
1151 if (throwable instanceof BuildRetrievalError) { in setupMockListeners()
1184 if (throwable instanceof BuildError) { in setupMockListeners()
1441 private void setupMockFailureListeners(Throwable throwable) throws IOException { in setupMockFailureListeners() argument
1442 setupMockListeners(InvocationStatus.FAILED, throwable, false); in setupMockFailureListeners()
1445 private void setupMockFailureListenersAny(Throwable throwable, boolean stubFailures) in setupMockFailureListenersAny() argument
1447 setupMockListeners(InvocationStatus.FAILED, throwable, stubFailures); in setupMockFailureListenersAny()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationExecution.java298 Throwable throwable, in runMultiTargetPreparersTearDown() argument
316 multipreparer.tearDown(context, throwable); in runMultiTargetPreparersTearDown()
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandScheduler.java2248 public void setLastInvocationExitCode(ExitCode code, Throwable throwable) { in setLastInvocationExitCode() argument
2250 mLastInvocationThrowable = throwable; in setLastInvocationExitCode()
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
DJavadoc.kt563 } catch (throwable: Throwable) { in toFullyQualifiedDocumentation()