Home
last modified time | relevance | path

Searched refs:mModuleContext (Results 1 – 9 of 9) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationContext.java62 private IInvocationContext mModuleContext; field in InvocationContext
323 mModuleContext = invocationContext; in setModuleInvocationContext()
329 return mModuleContext; in getModuleInvocationContext()
423 if (mModuleContext != null) { in toProto()
424 contextBuilder.setModuleContext(mModuleContext.toProto()); in toProto()
451 context.mModuleContext = InvocationContext.fromProto(protoContext.getModuleContext()); in fromProto()
DShardListener.java53 private IInvocationContext mModuleContext = null; field in ShardListener
163 mModuleContext = moduleContext; in testModuleStarted()
200 if (mModuleContext == null) { in testRunEnded()
217 mMainListener.testModuleStarted(mModuleContext); in testModuleEnded()
245 mModuleContext = null; in testModuleEnded()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DModuleListener.java54 private final IInvocationContext mModuleContext; field in ModuleListener
68 mModuleContext = moduleContext; in ModuleListener()
308 if (mModuleContext == null || mModuleContext.getDevices().isEmpty()) { in getSerial()
311 return mModuleContext.getDevices().get(0).getSerialNumber(); in getSerial()
/tools/tradefederation/core/javatests/com/android/tradefed/retry/
DResultAggregatorTest.java63 private IInvocationContext mModuleContext; field in ResultAggregatorTest
95 mModuleContext = new InvocationContext(); in setUp()
147 mAggregator.testModuleStarted(mModuleContext); in testForwarding()
180 inOrderAgg.verify(mAggListener).testModuleStarted(mModuleContext); in testForwarding()
181 inOrder.verify(mDetailedListener).testModuleStarted(mModuleContext); in testForwarding()
285 mAggregator.testModuleStarted(mModuleContext); in testForwarding_emptyModule()
295 mAggregator.testModuleStarted(mModuleContext); in testForwarding_emptyModule()
305 inOrderAgg.verify(mAggListener).testModuleStarted(mModuleContext); in testForwarding_emptyModule()
306 inOrder.verify(mDetailedListener).testModuleStarted(mModuleContext); in testForwarding_emptyModule()
326 inOrder.verify(mDetailedListener).testModuleStarted(mModuleContext); in testForwarding_emptyModule()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/retry/
DResultsPlayer.java55 public IInvocationContext mModuleContext; field in ResultsPlayer.ReplayModuleHolder
102 IInvocationContext moduleContext = holder.mModuleContext; in run()
159 holder.mModuleContext = moduleContext; in addToReplay()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java688 public IInvocationContext mModuleContext; field in SubprocessEventHelper.TestModuleStartedEventInfo
691 mModuleContext = moduleContext; in TestModuleStartedEventInfo()
697 mModuleContext = in TestModuleStartedEventInfo()
709 File serializedContext = SerializationUtil.serialize(mModuleContext); in toString()
713 mModuleContext in toString()
DSubprocessTestResultsParser.java520 mCurrentModuleContext = module.mModuleContext; in handleEvent()
521 mListener.testModuleStarted(module.mModuleContext); in handleEvent()
/tools/tradefederation/core/src/com/android/tradefed/result/proto/
DProtoResultReporter.java77 private IInvocationContext mModuleContext; field in ProtoResultReporter
271 mModuleContext = moduleContext; in testModuleStarted()
289 moduleBuilder.setDescription(Any.pack(mModuleContext.toProto())); in testModuleEnded()
291 mModuleContext = null; in testModuleEnded()
DProtoResultParser.java102 private IInvocationContext mModuleContext = null; field in ProtoResultParser
453 mModuleContext = moduleContext; in handleModuleStart()
473 mModuleContext.addInvocationAttributes(moduleContext.getAttributes()); in handleModuleEnded()
479 mModuleContext = null; in handleModuleEnded()