Home
last modified time | relevance | path

Searched refs:logAssociation (Results 1 – 22 of 22) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/result/proto/
DProtoResultParserTest.java155 mMockListener.logAssociation(EasyMock.eq("subprocess-log1"), EasyMock.capture(capture)); in testEvents()
157 mMockListener.logAssociation(EasyMock.eq("subprocess-run_log1"), EasyMock.anyObject()); in testEvents()
160 mMockListener.logAssociation(EasyMock.eq("subprocess-module_log1"), EasyMock.anyObject()); in testEvents()
162 mMockListener.logAssociation( in testEvents()
181 mTestParser.logAssociation("log1", logFile); in testEvents()
187 mTestParser.logAssociation( in testEvents()
191 mTestParser.logAssociation( in testEvents()
195 mTestParser.logAssociation( in testEvents()
271 mMockListener.logAssociation(EasyMock.eq("subprocess-log1"), EasyMock.anyObject()); in testEvents_finaleProto()
273 mMockListener.logAssociation(EasyMock.eq("subprocess-run_log1"), EasyMock.anyObject()); in testEvents_finaleProto()
[all …]
DStreamProtoResultReporterTest.java105 mReporter.logAssociation( in testStream()
110 mReporter.logAssociation( in testStream()
170 mReporter.logAssociation( in testStream_noInvocationReporting()
175 mReporter.logAssociation( in testStream_noInvocationReporting()
DProtoResultReporterTest.java82 mReporter.logAssociation("log1", new LogFile("path", "url", false, LogDataType.TEXT, 5)); in testFinalizeProto()
86 mReporter.logAssociation( in testFinalizeProto()
/tools/tradefederation/core/src/com/android/tradefed/result/
DLogSaverResultForwarder.java83 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in testLog()
122 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in LogSaverResultForwarder
127 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in logAssociation()
DResultAndLogForwarder.java58 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ResultAndLogForwarder
63 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in logAssociation()
DILogSaverListener.java64 public default void logAssociation(String dataName, LogFile logFile) { in logAssociation() method
DLegacySubprocessResultsReporter.java149 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in LegacySubprocessResultsReporter
DCollectingTestListener.java294 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in CollectingTestListener
DSubprocessResultsReporter.java207 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in SubprocessResultsReporter
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DShardListenerTest.java86 .logAssociation(EasyMock.eq("test-file"), EasyMock.anyObject()); in testLogWithoutRun()
91 mShardListener.logAssociation("test-file", new LogFile("path", "url", LogDataType.TEXT)); in testLogWithoutRun()
193 mockListener.logAssociation("test-file", testFile); in testLogOrderingForSharding()
196 mockListener.logAssociation("run-file", runFile); in testLogOrderingForSharding()
DTestInvocationTest.java859 logSaverListener.logAssociation( in testInvoke_logFileSaved()
870 logSaverListener.logAssociation( in testInvoke_logFileSaved()
881 logSaverListener.logAssociation( in testInvoke_logFileSaved()
892 logSaverListener.logAssociation( in testInvoke_logFileSaved()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DModuleListener.java181 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ModuleListener
183 super.logAssociation(dataName, logFile); in logAssociation()
187 ((ILogSaverListener) mMainListener).logAssociation(dataName, logFile); in logAssociation()
DModuleDefinition.java688 ((ILogSaverListener) listener).logAssociation(logFile.getKey(), logFile.getValue()); in reportFinalResults()
721 .logAssociation(logFile.getKey(), logFile.getValue()); in forwardTestResults()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DShardMasterResultForwarder.java154 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ShardMasterResultForwarder
159 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in logAssociation()
DShardListener.java216 ((ILogSaverListener) listener).logAssociation(logFile.getKey(), logFile.getValue()); in forwardLogAssociation()
/tools/tradefederation/core/src/com/android/tradefed/postprocessor/
DBasePostProcessor.java243 public final void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in BasePostProcessor
245 ((ILogSaverListener) mForwarder).logAssociation(dataName, logFile); in logAssociation()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/retry/
DResultsPlayer.java164 .logAssociation(logFile.getKey(), logFile.getValue()); in forwardTestResults()
/tools/tradefederation/core/src/com/android/tradefed/result/proto/
DProtoResultReporter.java378 public final void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ProtoResultReporter
DProtoResultParser.java398 logger.logAssociation(mFilePrefix + entry.getKey(), file); in handleLogs()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessTestResultsParser.java481 .logAssociation(assosInfo.mDataName, assosInfo.mLoggedFile); in handleEvent()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DSubprocessTestResultsParserTest.java476 mockRunListener.logAssociation(EasyMock.eq("dataname"), EasyMock.capture(capture)); in testParse_logAssociation()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
DModuleDefinitionTest.java1105 mMockLogSaverListener.logAssociation("testlogclass", loggedFile); in testModule_LogSaverResultForwarder()