Home
last modified time | relevance | path

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

/tools/tradefederation/core/util_apps/WifiUtil/src/com/android/tradefed/utils/wifi/
DWifiConnector.java258 long timeSpent; in connectToNetwork() local
259 timeSpent = waitForCallable(new Callable<Boolean>() { in connectToNetwork()
284 connectTimeout = calculateTimeLeft(connectTimeout, timeSpent); in connectToNetwork()
285 timeSpent = waitForCallable(new Callable<Boolean>() { in connectToNetwork()
294 connectTimeout = calculateTimeLeft(connectTimeout, timeSpent); in connectToNetwork()
295 timeSpent = waitForCallable(new Callable<Boolean>() { in connectToNetwork()
303 connectTimeout = calculateTimeLeft(connectTimeout, timeSpent); in connectToNetwork()
410 private long calculateTimeLeft(long connectTimeout, long timeSpent) { in calculateTimeLeft() argument
411 if (timeSpent > connectTimeout) { in calculateTimeLeft()
414 return connectTimeout - timeSpent; in calculateTimeLeft()
/tools/tradefederation/core/src/com/android/tradefed/device/
DTestDevice.java1170 long timeSpent = System.currentTimeMillis() - start; in disableKeyguard() local
1171 if (timeSpent > INPUT_DISPATCH_READY_TIMEOUT) { in disableKeyguard()
1172 CLog.w("Timeout after waiting %dms on enabling of input dispatch", timeSpent); in disableKeyguard()
1203 long timeSpent = System.currentTimeMillis() - start; in verifyKeyguardDismissed() local
1204 if (timeSpent > DISMISS_KEYGUARD_TIMEOUT) { in verifyKeyguardDismissed()
1206 CLog.w("Keyguard still going away %dms after being dismissed", timeSpent); in verifyKeyguardDismissed()
1208 CLog.w("No response from keyguard %dms after being dismissed", timeSpent); in verifyKeyguardDismissed()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationExecution.java1298 long timeSpent = in runTests() local
1307 remainingTestPhaseTime -= timeSpent; in runTests()
1505 long timeSpent = System.currentTimeMillis() - startTime; in runTestThread() local
1509 return timeSpent; in runTestThread()