Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/result/proto/
DProtoResultReporter.java263 TestRecord.Builder moduleBuilder = TestRecord.newBuilder(); in testModuleStarted() local
264 moduleBuilder.setParentTestRecordId(mInvocationRecordBuilder.getTestRecordId()); in testModuleStarted()
265 moduleBuilder.setTestRecordId( in testModuleStarted()
267 moduleBuilder.setStartTime(createTimeStamp(System.currentTimeMillis())); in testModuleStarted()
268 moduleBuilder.setDescription(Any.pack(moduleContext.toProto())); in testModuleStarted()
269 mLatestChild.add(moduleBuilder); in testModuleStarted()
273 processTestModuleStarted(moduleBuilder.build()); in testModuleStarted()
282 TestRecord.Builder moduleBuilder = mLatestChild.pop(); in testModuleEnded() local
285 moduleBuilder.setEndTime(createTimeStamp(System.currentTimeMillis())); in testModuleEnded()
287 moduleBuilder.setStatus(TestStatus.PASS); in testModuleEnded()
[all …]