Home
last modified time | relevance | path

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

/tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
DAddCommandOp.java32 AddCommandOp(long totalTime, String... commandArgs) { in AddCommandOp() argument
33 mTotalTime = totalTime; in AddCommandOp()
45 long totalTime = jsonData.getLong(TIME); in createFromJson() local
51 return new AddCommandOp(totalTime, commandArgs); in createFromJson()
DRemoteClient.java156 public void sendAddCommand(long totalTime, String... commandArgs) throws RemoteException { in sendAddCommand() argument
157 sendOperation(new AddCommandOp(totalTime, commandArgs)); in sendAddCommand()
/tools/tradefederation/core/src/com/android/tradefed/result/suite/
DSuiteResultReporter.java294 long totalTime = 0l; in printModuleCheckersMetric() local
300 totalTime += t.getElapsedTime(); in printModuleCheckersMetric()
304 "Total module checkers time: %s\n", TimeUtil.formatElapsedTime(totalTime))); in printModuleCheckersMetric()
/tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
DHermeticLaunchTest.java326 Double totalTime = 0d; in analyzeLogCatData() local
328 totalTime += launchTime; in analyzeLogCatData()
330 Double averageTime = Double.valueOf(totalTime / amLaunchTimes.get(activityName).size()); in analyzeLogCatData()