Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/result/
DLegacySubprocessResultsReporter.java27 import com.android.tradefed.util.SubprocessEventHelper.TestRunEndedEventInfo;
124 TestRunEndedEventInfo info = new TestRunEndedEventInfo(time, runMetrics); in testRunEnded()
DSubprocessResultsReporter.java34 import com.android.tradefed.util.SubprocessEventHelper.TestRunEndedEventInfo;
120 TestRunEndedEventInfo info = in testRunEnded()
121 new TestRunEndedEventInfo(time, TfMetricProtoUtil.compatibleConvert(runMetrics)); in testRunEnded()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java139 public static class TestRunEndedEventInfo { class in SubprocessEventHelper
143 public TestRunEndedEventInfo(Long time, Map<String, String> runMetrics) { in TestRunEndedEventInfo() method in SubprocessEventHelper.TestRunEndedEventInfo
148 public TestRunEndedEventInfo(JSONObject jsonObject) throws JSONException { in TestRunEndedEventInfo() method in SubprocessEventHelper.TestRunEndedEventInfo
DSubprocessTestResultsParser.java35 import com.android.tradefed.util.SubprocessEventHelper.TestRunEndedEventInfo;
361 TestRunEndedEventInfo rei = new TestRunEndedEventInfo(new JSONObject(eventJson)); in handleEvent()