Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDeviceStateMonitor.java736 long nextWaitTime = Math.min(getCheckPollTime() * counter, MAX_CHECK_POLL_TIME); in busyWaitFunction() local
737 if (currentTotalWaitTime + nextWaitTime > maxWaitTime) { in busyWaitFunction()
738 nextWaitTime = maxWaitTime - currentTotalWaitTime; in busyWaitFunction()
740 getRunUtil().sleep(nextWaitTime); in busyWaitFunction()
741 currentTotalWaitTime += nextWaitTime; in busyWaitFunction()