Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/result/
DLegacySubprocessResultsReporter.java33 import com.android.tradefed.util.SubprocessEventHelper.TestRunStartedEventInfo;
153 TestRunStartedEventInfo info = new TestRunStartedEventInfo(runName, testCount); in testRunStarted()
DSubprocessResultsReporter.java38 import com.android.tradefed.util.SubprocessEventHelper.TestRunStartedEventInfo;
195 TestRunStartedEventInfo info = in testRunStarted()
196 new TestRunStartedEventInfo(runName, testCount, attemptNumber, startTime); in testRunStarted()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java84 public static class TestRunStartedEventInfo { class in SubprocessEventHelper
91 public TestRunStartedEventInfo(String runName, int testCount) { in TestRunStartedEventInfo() method in SubprocessEventHelper.TestRunStartedEventInfo
98 public TestRunStartedEventInfo(String runName, int testCount, int attempt, long startTime) { in TestRunStartedEventInfo() method in SubprocessEventHelper.TestRunStartedEventInfo
105 public TestRunStartedEventInfo(JSONObject jsonObject) throws JSONException { in TestRunStartedEventInfo() method in SubprocessEventHelper.TestRunStartedEventInfo
DSubprocessTestResultsParser.java50 import com.android.tradefed.util.SubprocessEventHelper.TestRunStartedEventInfo;
392 TestRunStartedEventInfo rsi = new TestRunStartedEventInfo(new JSONObject(eventJson)); in handleEvent()