Home
last modified time | relevance | path

Searched refs:getErrorIdentifier (Results 1 – 7 of 7) sorted by relevance

/tools/tradefederation/core/test_result_interfaces/com/android/tradefed/result/
DMultiFailureDescription.java83 public ErrorIdentifier getErrorIdentifier() { in getErrorIdentifier() method in MultiFailureDescription
88 return mFailures.get(0).getErrorIdentifier(); in getErrorIdentifier()
DFailureDescription.java118 public ErrorIdentifier getErrorIdentifier() { in getErrorIdentifier() method in FailureDescription
/tools/tradefederation/core/tests/src/com/android/tradefed/result/
DSubprocessResultsReporterTest.java205 capturedFailure.getErrorIdentifier().name()); in testPrintEvent_printToSocket_StructuredFailures()
208 capturedFailure.getErrorIdentifier().code()); in testPrintEvent_printToSocket_StructuredFailures()
217 capturedInvocation.getErrorIdentifier().name()); in testPrintEvent_printToSocket_StructuredFailures()
220 capturedInvocation.getErrorIdentifier().code()); in testPrintEvent_printToSocket_StructuredFailures()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/logger/
DCurrentInvocationTest.java36 assertEquals(InfraErrorIdentifier.UNDETERMINED, description.getErrorIdentifier()); in testCreateFailure()
/tools/tradefederation/core/src/com/android/tradefed/result/proto/
DProtoResultReporter.java327 if (failure.getErrorIdentifier() != null) { in testRunFailed()
328 debugContext.setErrorName(failure.getErrorIdentifier().name()); in testRunFailed()
329 debugContext.setErrorCode(failure.getErrorIdentifier().code()); in testRunFailed()
556 if (mInvocationFailureDescription.getErrorIdentifier() != null) { in handleInvocationFailure()
558 mInvocationFailureDescription.getErrorIdentifier().name()); in handleInvocationFailure()
560 mInvocationFailureDescription.getErrorIdentifier().code()); in handleInvocationFailure()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java202 if (mFailure.getErrorIdentifier() != null) { in toString()
203 tags.putOpt(ERROR_NAME_KEY, mFailure.getErrorIdentifier().name()); in toString()
204 tags.putOpt(ERROR_CODE_KEY, mFailure.getErrorIdentifier().code()); in toString()
345 if (mFailure.getErrorIdentifier() != null) { in toString()
346 tags.putOpt(ERROR_NAME_KEY, mFailure.getErrorIdentifier().name()); in toString()
347 tags.putOpt(ERROR_CODE_KEY, mFailure.getErrorIdentifier().code()); in toString()
/tools/tradefederation/core/tests/src/com/android/tradefed/result/proto/
DProtoResultParserTest.java282 invocFailureCaptured.getErrorIdentifier().name()); in testEvents_invocationFailure()
285 invocFailureCaptured.getErrorIdentifier().code()); in testEvents_invocationFailure()
322 assertNull(invocFailureCaptured.getErrorIdentifier()); in testEvents_invocationFailure_errorNotSet()