Home
last modified time | relevance | path

Searched refs:TestRunFailedEventInfo (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/result/
DSubprocessResultsReporter.java37 import com.android.tradefed.util.SubprocessEventHelper.TestRunFailedEventInfo;
169 TestRunFailedEventInfo info = new TestRunFailedEventInfo(reason); in testRunFailed()
176 TestRunFailedEventInfo info = new TestRunFailedEventInfo(failure); in testRunFailed()
DLegacySubprocessResultsReporter.java32 import com.android.tradefed.util.SubprocessEventHelper.TestRunFailedEventInfo;
146 TestRunFailedEventInfo info = new TestRunFailedEventInfo(reason); in testRunFailed()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java138 public static class TestRunFailedEventInfo { class in SubprocessEventHelper
142 public TestRunFailedEventInfo(String reason) { in TestRunFailedEventInfo() method in SubprocessEventHelper.TestRunFailedEventInfo
146 public TestRunFailedEventInfo(FailureDescription failure) { in TestRunFailedEventInfo() method in SubprocessEventHelper.TestRunFailedEventInfo
150 public TestRunFailedEventInfo(JSONObject jsonObject) throws JSONException { in TestRunFailedEventInfo() method in SubprocessEventHelper.TestRunFailedEventInfo
DSubprocessTestResultsParser.java49 import com.android.tradefed.util.SubprocessEventHelper.TestRunFailedEventInfo;
406 TestRunFailedEventInfo rfi = new TestRunFailedEventInfo(new JSONObject(eventJson)); in handleEvent()