/tools/tradefederation/core/tests/src/com/android/tradefed/result/proto/ |
D | ProtoResultParserTest.java | 155 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 …]
|
D | StreamProtoResultReporterTest.java | 105 mReporter.logAssociation( in testStream() 110 mReporter.logAssociation( in testStream() 170 mReporter.logAssociation( in testStream_noInvocationReporting() 175 mReporter.logAssociation( in testStream_noInvocationReporting()
|
D | ProtoResultReporterTest.java | 82 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/ |
D | LogSaverResultForwarder.java | 83 ((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()
|
D | ResultAndLogForwarder.java | 58 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ResultAndLogForwarder 63 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in logAssociation()
|
D | ILogSaverListener.java | 64 public default void logAssociation(String dataName, LogFile logFile) { in logAssociation() method
|
D | LegacySubprocessResultsReporter.java | 149 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in LegacySubprocessResultsReporter
|
D | CollectingTestListener.java | 294 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in CollectingTestListener
|
D | SubprocessResultsReporter.java | 207 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in SubprocessResultsReporter
|
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/ |
D | ShardListenerTest.java | 86 .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()
|
D | TestInvocationTest.java | 859 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/ |
D | ModuleListener.java | 181 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()
|
D | ModuleDefinition.java | 688 ((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/ |
D | ShardMasterResultForwarder.java | 154 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ShardMasterResultForwarder 159 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in logAssociation()
|
D | ShardListener.java | 216 ((ILogSaverListener) listener).logAssociation(logFile.getKey(), logFile.getValue()); in forwardLogAssociation()
|
/tools/tradefederation/core/src/com/android/tradefed/postprocessor/ |
D | BasePostProcessor.java | 243 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/ |
D | ResultsPlayer.java | 164 .logAssociation(logFile.getKey(), logFile.getValue()); in forwardTestResults()
|
/tools/tradefederation/core/src/com/android/tradefed/result/proto/ |
D | ProtoResultReporter.java | 378 public final void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ProtoResultReporter
|
D | ProtoResultParser.java | 398 logger.logAssociation(mFilePrefix + entry.getKey(), file); in handleLogs()
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | SubprocessTestResultsParser.java | 481 .logAssociation(assosInfo.mDataName, assosInfo.mLoggedFile); in handleEvent()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/ |
D | SubprocessTestResultsParserTest.java | 476 mockRunListener.logAssociation(EasyMock.eq("dataname"), EasyMock.capture(capture)); in testParse_logAssociation()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/ |
D | ModuleDefinitionTest.java | 1105 mMockLogSaverListener.logAssociation("testlogclass", loggedFile); in testModule_LogSaverResultForwarder()
|