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.java29 import com.android.tradefed.util.SubprocessEventHelper.TestRunStartedEventInfo;
117 TestRunStartedEventInfo info = new TestRunStartedEventInfo(runName, testCount); in testRunStarted()
DSubprocessResultsReporter.java36 import com.android.tradefed.util.SubprocessEventHelper.TestRunStartedEventInfo;
141 TestRunStartedEventInfo info = in testRunStarted()
142 new TestRunStartedEventInfo(runName, testCount, attemptNumber); in testRunStarted()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java64 public static class TestRunStartedEventInfo { class in SubprocessEventHelper
70 public TestRunStartedEventInfo(String runName, int testCount) { in TestRunStartedEventInfo() method in SubprocessEventHelper.TestRunStartedEventInfo
76 public TestRunStartedEventInfo(String runName, int testCount, int attempt) { in TestRunStartedEventInfo() method in SubprocessEventHelper.TestRunStartedEventInfo
82 public TestRunStartedEventInfo(JSONObject jsonObject) throws JSONException { in TestRunStartedEventInfo() method in SubprocessEventHelper.TestRunStartedEventInfo
DSubprocessTestResultsParser.java37 import com.android.tradefed.util.SubprocessEventHelper.TestRunStartedEventInfo;
340 TestRunStartedEventInfo rsi = new TestRunStartedEventInfo(new JSONObject(eventJson)); in handleEvent()