HomeSort by relevance Sort by last modified time
    Searched refs:timeSpent (Results 1 - 7 of 7) 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/video_WebRtcMainFeedSwitching/
main-feed-switching.js 89 const timeSpent = Date.now() - this.startTime;
90 if (timeSpent >= this.runtimeSeconds * 1000) {
  /external/autotest/client/site_tests/video_WebRtcResolutionSwitching/
resolution-switching.js 84 const timeSpent = Date.now() - this.startTime;
85 if (timeSpent >= this.runtimeSeconds * 1000) {
  /external/autotest/client/site_tests/webrtc_PausePlayPeerConnections/
pause-play.js 79 const timeSpent = Date.now() - this.startTime;
80 if (timeSpent >= this.runtimeSeconds * 1000) {
  /external/autotest/client/site_tests/audio_WebRtcAudioLoopback/
audio_loopback_test.js 142 const timeSpent = Date.now() - this.startTime;
143 if (timeSpent >= this.runtimeSeconds * 1000) {
  /cts/hostsidetests/statsd/src/android/cts/statsd/atom/
UidAtomTests.java 276 long timeSpent = 0;
280 timeSpent += atom.getCpuActiveTime().getTimeMillis();
283 assertTrue(timeSpent > 0);
  /tools/tradefederation/core/src/com/android/tradefed/device/
TestDevice.java 545 long timeSpent = System.currentTimeMillis() - start;
546 if (timeSpent > INPUT_DISPATCH_READY_TIMEOUT) {
547 CLog.w("Timeout after waiting %dms on enabling of input dispatch", timeSpent);
    [all...]

Completed in 1957 milliseconds