Home
last modified time | relevance | path

Searched refs:mTestLogs (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/postprocessor/
DBasePostProcessor.java54 private Map<TestDescription, Map<String, LogFile>> mTestLogs = new LinkedHashMap<>(); field in BasePostProcessor
175 processAllTestMetricsAndLogs(storedTestMetrics, mTestLogs); in testRunEnded()
184 mTestLogs.clear(); in testRunEnded()
199 if (mTestLogs.containsKey(test)) { in testStarted()
200 mTestLogs.get(test).clear(); in testStarted()
202 mTestLogs.put(test, new HashMap<String, LogFile>()); in testStarted()
248 mTestLogs.containsKey(test) in testEnded()
249 ? mTestLogs.get(test) in testEnded()
314 mTestLogs.get(mCurrentTest).put(dataName, logFile); in logAssociation()
/tools/tradefederation/core/src/com/android/tradefed/testtype/
DFakeTest.java69 private List<String> mTestLogs = new ArrayList<>(); field in FakeTest
231 saveLogs(listener, mTestLogs); in executeTestRun()