Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DRemoteAndroidVirtualDevice.java107 long startTime = getCurrentTime(); in preInvocationSetup()
109 long remainingTime = getOptions().getGceCmdTimeout() - (getCurrentTime() - startTime); in preInvocationSetup()
307 long startTime = getCurrentTime(); in waitForTunnelOnline()
308 while (getCurrentTime() - startTime < waitTime) { in waitForTunnelOnline()
358 protected long getCurrentTime() { in getCurrentTime() method in RemoteAndroidVirtualDevice
DManagedRemoteDevice.java77 long startTime = getCurrentTime(); in preInvocationSetup()
79 long remainingTime = getOptions().getGceCmdTimeout() - (getCurrentTime() - startTime); in preInvocationSetup()
186 protected long getCurrentTime() { in getCurrentTime() method in ManagedRemoteDevice
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DModuleDefinition.java345 long prepStartTime = getCurrentTime(); in run()
396 mElapsedPreparation = getCurrentTime() - prepStartTime; in run()
424 mStartTestTime = getCurrentTime(); in run()
507 long cleanStartTime = getCurrentTime(); in run()
526 mElapsedTearDown = getCurrentTime() - cleanStartTime; in run()
691 listener.testRunEnded(getCurrentTime() - mStartTestTime, metricsProto); in reportFinalResults()
863 private long getCurrentTime() { in getCurrentTime() method in ModuleDefinition
/tools/tradefederation/core/tests/src/com/android/tradefed/result/suite/
DFormattedGeneratorReporterTest.java75 protected long getCurrentTime() { in testFinalizedResults_nothingRan()
109 protected long getCurrentTime() { in testFinalizeResults_noAbi()
142 protected long getCurrentTime() { in testFinalizeResults()
/tools/tradefederation/core/src/com/android/tradefed/util/
DRunUtil.java414 final long initialTime = getCurrentTime(); in runFixedTimedRetry()
415 while (getCurrentTime() < (initialTime + maxTime)) { in runFixedTimedRetry()
434 final long initialTime = getCurrentTime(); in runEscalatingTimedRetry()
439 long remainingTime = maxTime - (getCurrentTime() - initialTime); in runEscalatingTimedRetry()
463 long getCurrentTime() { in getCurrentTime() method in RunUtil
/tools/tradefederation/core/src/com/android/tradefed/suite/checker/
DSystemServerStatusChecker.java56 mModuleStartTime = getCurrentTime(); in preExecutionCheck()
98 protected long getCurrentTime() { in getCurrentTime() method in SystemServerStatusChecker
/tools/tradefederation/core/src/com/android/tradefed/result/suite/
DSuiteResultReporter.java88 mStartTime = getCurrentTime(); in invocationStarted()
118 mEndTime = getCurrentTime(); in invocationEnded()
416 protected long getCurrentTime() { in getCurrentTime() method in SuiteResultReporter
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DDeviceStateMonitorTest.java495 protected long getCurrentTime() { in testWaitForStoreMount()
531 protected long getCurrentTime() { in testWaitForStoreMount_PermDenied()
567 protected long getCurrentTime() { in testWaitForStoreMount_becomeAvailable()
618 protected long getCurrentTime() { in testWaitForStoreMount_outputBecomeValid()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDeviceStateMonitor.java284 final long number = getCurrentTime(); in waitForStoreMount()
542 protected long getCurrentTime() { in getCurrentTime() method in NativeDeviceStateMonitor
/tools/tradefederation/core/tests/src/com/android/tradefed/suite/checker/
DSystemServerStatusCheckerTest.java44 protected long getCurrentTime() { in setUp()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DRunUtilTest.java248 long getCurrentTime() { in testRunEscalatingTimedRetry_timeout()