Home
last modified time | relevance | path

Searched refs:delay (Results 1 – 25 of 31) sorted by relevance

12

/tools/test/connectivity/acts_tests/tests/google/bt/car_bt/
DBtCarHfpFuzzTest.py70 def dial_a_hangup_b_quick(self, a, b, delay=0, ph=""): argument
84 time.sleep(delay)
153 for delay in self.delay_set:
154 self.log.info("test_fuzz outgoing_hf: {}".format(delay))
158 if not self.dial_a_hangup_b_quick(self.hf, self.hf, delay):
194 for delay in self.delay_set:
195 self.log.info("test_fuzz outgoing_ag: {}".format(delay))
199 if not self.dial_a_hangup_b_quick(self.ag, self.ag, delay):
235 for delay in self.delay_set:
236 self.log.info("test_fuzz dial_hf hangup_ag: {}".format(delay))
[all …]
DBtCarMultiUserTest.py51 def delay(self, delay): argument
52 self.log.debug("Delay interval {}".format(0.01 * delay))
55 while (start_time + 0.01 * delay) > time.time():
82 self.delay(delay_interval)
87 self.delay(delay_interval)
DBtCarToggleTest.py43 def delay(self, delay_interval): member in BtCarToggleTest
93 self.delay(delay_off_interval)
96 self.delay(delay_on_interval)
/tools/netsim/src/hci/
Dasync_manager.cc285 AsyncTaskId ExecAsync(AsyncUserId user_id, std::chrono::milliseconds delay, in ExecAsync() argument
288 std::chrono::steady_clock::now() + delay, callback, user_id)); in ExecAsync()
292 std::chrono::milliseconds delay, in ExecAsyncPeriodically() argument
296 std::chrono::steady_clock::now() + delay, period, callback, user_id)); in ExecAsyncPeriodically()
560 std::chrono::milliseconds delay, in ExecAsync() argument
562 return taskManager_p_->ExecAsync(user_id, delay, callback); in ExecAsync()
566 AsyncUserId user_id, std::chrono::milliseconds delay, in ExecAsyncPeriodically() argument
568 return taskManager_p_->ExecAsyncPeriodically(user_id, delay, period, in ExecAsyncPeriodically()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DNativeBenchmarkTest.java198 for (Integer delay : mDelays) { in doRunAllTestsInSubdirectory()
201 double delayFloat = ((double)delay)/1000000; in doRunAllTestsInSubdirectory()
212 addMetric(metricMap, resultParser, delay); in doRunAllTestsInSubdirectory()
230 Integer delay) { in addMetric() argument
231 String metricKey = String.format("%s-delay%d", AVG_OP_TIME_KEY_PREFIX, delay); in addMetric()
/tools/test/connectivity/acts_tests/tests/google/net/arduino/disconnect_wifi/
Ddisconnect_wifi.ino4 delay(1000); // wait for a second to read from serial port after flashing
25 delay(1000);
39 delay(1000);
62 delay(5000); // Wait a bit before scanning again
/tools/tradefederation/core/common_util/com/android/tradefed/command/
DCommandInterrupter.java95 @Nonnull Thread thread, long delay, @Nonnull TimeUnit unit) { in allowInterruptAsync() argument
101 CLog.w("Allowing interrupt in %d ms", unit.toMillis(delay)); in allowInterruptAsync()
107 delay, in allowInterruptAsync() field in CommandInterrupter
/tools/test/connectivity/acts_tests/tests/google/net/arduino/connect_wifi/
Dconnect_wifi.ino14 delay(1000); // wait for a second to read from serial port after flashing
36 delay(1000);
58 delay(250);
/tools/loganalysis/src/com/android/loganalysis/item/
DLatencyItem.java40 public void setDelay(long delay) { in setDelay() argument
41 setAttribute(DELAY, delay); in setDelay()
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/gnss/
Ddevice_doze.py36 @retry(exceptions=ValueError, tries=3, delay=1)
54 @retry(exceptions=ValueError, tries=3, delay=1)
/tools/tradefederation/core/proto/invocation/
Dinvocation_manager.proto34 // Request the Tradefed process to exit after a delay that specified by the client, non-blocking.
76 // Request the Tradefed Java Process to exit after a delay
78 // The delay of Tradefed process exit in ms
/tools/tradefederation/core/src/com/android/tradefed/util/
DFileIdleMonitor.java115 private void scheduleCheck(Duration delay) { in scheduleCheck() argument
116 mExecutor.schedule(this::checkIfIdle, delay.toMillis(), TimeUnit.MILLISECONDS); in scheduleCheck()
/tools/tradefederation/core/javatests/com/android/tradefed/util/
DFileIdleMonitorTest.java79 longThat(delay -> delay <= maxDelay), in testSchedulesCheckIfTimeoutNotReached()
/tools/tradefederation/core/javatests/com/android/tradefed/util/net/
DHttpHelperFuncTest.java124 public Backend(int delay, int timeout, CyclicBarrier barrier) { in Backend() argument
126 mDelay = delay; in Backend()
/tools/external_updater/
Dexternal_updater.py282 delay: int) -> Dict[str, Dict[str, str]]:
293 time.sleep(delay)
330 results = check_and_update_path(args, paths, False, args.delay)
/tools/netsim/ui/ts/
Ddevice-observer.ts271 const delay = (ms: number) => new Promise(res => setTimeout(res, ms)); constant
275 await delay(1000);
/tools/asuite/adevice/src/
Ddevice.rs281 let delay = Duration::from_secs(1); in run_process_with_retry_until_timeout() localVariable
313 sleep(delay); in run_process_with_retry_until_timeout()
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/
Ddhcp_server.py65 @retry(exceptions=NoInterfaceError, tries=3, delay=1)
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/power/
DPowerWiFiBaseTest.py62 @retry(tries=5, delay=10)
/tools/tradefederation/contrib/src/com/android/performance/tests/
DAppTransitionTests.java735 for (Long delay : delayList) { in computeAndUploadResults()
736 stats.add(Double.parseDouble(delay.toString())); in computeAndUploadResults()
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/
Dapollo_lib.py569 @retry(Exception, tries=4, delay=1, backoff=2)
/tools/repohooks/tools/
Dcheckpatch.pl6433 my $delay = $1;
6435 if (! ($delay < 10) ) {
6439 if ($delay > 2000) {
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/
Dwifi_test_utils.py2928 @retry(tries=5, delay=2)
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDevice.java535 public void setLogStartDelay(int delay) { in setLogStartDelay() argument
536 mLogStartDelay = delay; in setLogStartDelay()
/tools/dexter/testdata/expected/
Dmedium.asm106354 .local v2, "delay", long

12