HomeSort by relevance Sort by last modified time
    Searched refs:timeSpent (Results 1 - 3 of 3) sorted by null

  /tools/tradefederation/core/util-apps/WifiUtil/src/com/android/tradefed/utils/wifi/
WifiConnector.java 227 long timeSpent;
228 timeSpent = waitForCallable(new Callable<Boolean>() {
253 connectTimeout = calculateTimeLeft(connectTimeout, timeSpent);
254 timeSpent = waitForCallable(new Callable<Boolean>() {
263 connectTimeout = calculateTimeLeft(connectTimeout, timeSpent);
264 timeSpent = waitForCallable(new Callable<Boolean>() {
272 connectTimeout = calculateTimeLeft(connectTimeout, timeSpent);
388 private long calculateTimeLeft(long connectTimeout, long timeSpent) {
389 if (timeSpent > connectTimeout) {
392 return connectTimeout - timeSpent;
    [all...]
  /external/autotest/client/site_tests/webrtc_PausePlayPeerConnections/
pause-play.js 174 const timeSpent = Date.now() - this.startTime;
175 if (timeSpent >= this.runtimeSeconds * 1000) {
  /tools/tradefederation/core/src/com/android/tradefed/device/
TestDevice.java 489 long timeSpent = System.currentTimeMillis() - start;
490 if (timeSpent > INPUT_DISPATCH_READY_TIMEOUT) {
491 CLog.w("Timeout after waiting %dms on enabling of input dispatch", timeSpent);
    [all...]

Completed in 105 milliseconds