HomeSort by relevance Sort by last modified time
    Searched refs:test_time (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/autotest/client/site_tests/power_StatsCPUIdle/
power_StatsCPUIdle.py 14 def run_once(self, test_time=60):
18 time.sleep(test_time)
23 test_time, current_stats)
  /external/ltp/testcases/kernel/syscalls/select/
select01.c 66 long test_time = 0; /* in usecs */ local
75 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */
77 if (test_time > 1000000 * 60)
78 test_time = test_time % (1000000 * 60);
80 timeout.tv_sec = test_time / 1000000;
81 timeout.tv_usec = test_time - (timeout.tv_sec * 1000000);
88 lc, test_time, errno);
93 test_time);
select02.c 64 long test_time = 0; /* in usecs */ local
73 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */
75 if (test_time > 1000000 * 60)
76 test_time = test_time % (1000000 * 60);
78 timeout.tv_sec = test_time / 1000000;
79 timeout.tv_usec = test_time - (timeout.tv_sec * 1000000);
93 test_time);
select03.c 68 long test_time = 0; /* in usecs */ local
78 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */
80 if (test_time > 1000000 * 60)
81 test_time = test_time % (1000000 * 60);
83 timeout.tv_sec = test_time / 1000000;
84 timeout.tv_usec = test_time - (timeout.tv_sec * 1000000);
98 test_time);
  /external/autotest/client/site_tests/power_StatsCPUFreq/
power_StatsCPUFreq.py 14 def run_once(self, test_time=60):
23 time.sleep(test_time)
29 test_time, current_stats)
  /external/autotest/client/site_tests/power_StatsUSB/
power_StatsUSB.py 14 def run_once(self, test_time=60):
23 time.sleep(test_time)
29 test_time, stats['active'])
  /external/ltp/testcases/kernel/device-drivers/locking/
lock_torture.sh 32 test_time=60
42 t) test_time=$OPTARG ;;
70 est_time=$(echo "scale=2; $test_time * $TST_TOTAL / 60 " | bc)
75 tst_resm TINFO "$type: running $test_time sec..."
80 sleep $test_time
  /external/ltp/testcases/kernel/device-drivers/rcu/
rcu_torture.sh 33 test_time=60
45 t) test_time=$OPTARG ;;
81 est_time=`echo "scale=2; $test_time * $TST_TOTAL / 60 " | bc`
86 tst_resm TINFO "$type: running $test_time sec..."
97 sleep $test_time
  /external/autotest/site_utils/
dut_status_unittest.py 33 self.test_time = time.time()
36 with mock.patch('time.time', return_value=self.test_time):
48 end_time = int(self.test_time)
58 end_time = int(self.test_time)
71 end_time = int(self.test_time) - 3600
86 end_time = int(self.test_time)
93 start_time = int(self.test_time) - 5 * 3600
104 start_time = int(self.test_time) - 5 * 3600
115 end_time = int(self.test_time) - 5 * 3600
126 start_time = int(self.test_time) - 5 * 360
    [all...]
  /external/autotest/client/tests/netperf2/
netperf2.py 37 test_time = 15, stream_list = [1], test_specific_args = '',
45 test_time: time to run the test for in seconds
66 self.test_time = test_time
93 # Wait up to test_time + 5 minutes for the test to
96 test_time+300).rendezvous(*all)
104 self.client(server_ip, test, test_time, num_streams,
140 def client(self, server_ip, test, test_time, num_streams,
142 args = '-H %s -t %s -l %d' % (server_ip, test, test_time)
162 interval = max(1, test_time / 5
    [all...]
  /external/ltp/testcases/kernel/syscalls/mkdir/
mkdir09.c 79 static int test_time = 5; variable
108 test_time = atoi(opt_test_time);
179 if (test_time) {
183 sleep(test_time);
203 if (test_time) {
204 sleep(test_time);
  /external/autotest/server/cros/network/
netperf_runner.py 448 def __init__(self, test_type, test_time=DEFAULT_TEST_TIME):
452 @param test_time int number of seconds to run the test for.
456 self.test_time = test_time
461 return '%s(test_type=%r, test_time=%r' % (
464 self.test_time)
546 self._config.test_time,
549 logging.info('Running netperf for %d seconds.', self._config.test_time)
550 timeout = self._config.test_time + self.NETPERF_COMMAND_TIMEOUT_MARGIN
netperf_session.py 70 test_type, test_time=self.WARMUP_SAMPLE_TIME_SECONDS)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
regrtest.py 454 ok, test_time = result
455 test_times.append((test_time, test))
    [all...]
  /external/python/cpython2/Lib/test/
regrtest.py 468 ok, test_time = result
469 test_times.append((test_time, test))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
regrtest.py 455 ok, test_time = result
456 test_times.append((test_time, test))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
regrtest.py 455 ok, test_time = result
456 test_times.append((test_time, test))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
regrtest.py 455 ok, test_time = result
456 test_times.append((test_time, test))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
regrtest.py 455 ok, test_time = result
456 test_times.append((test_time, test))
    [all...]
  /external/autotest/scheduler/
scheduler_models_unittest.py 69 test_time = self.god.create_mock_function('time')
70 test_time.expect_call().and_return(33)
71 test_time.expect_call().and_return(34.01)
72 test_time.expect_call().and_return(34.99)
73 test_time.expect_call().and_return(35.01)
79 now_func=test_time) # time 33
  /external/autotest/utils/
test_importer.py 278 test_time = { 'short' : 1,
302 test.test_time = int(data.time)
303 if test.test_time < 1 or test.time > 3:
308 if not test.test_time and str == type(data.time):
309 test.test_time = test_time[data.time.lower()]
  /external/netperf/src/
netsh.c 148 test_time = 10, /* test ends by time */ variable
928 test_time = convert(optarg);
930 if (test_time < 0) {
931 test_bytes = -1 * test_time;
933 test_time = 0;
    [all...]
netsh.h 21 #define TEST_TIME 10 /* test ends by time */
112 test_time, /* test ends by time */
nettest_unix.c 383 if (test_time) {
384 stream_stream_request->test_length = test_time;
447 if (test_time) {
451 start_timer(test_time);
    [all...]
  /external/ltp/testcases/kernel/mem/mtest05/
mmstress.c 637 int test_time = 0; local
676 test_time = atoi(optarg));
696 set_timer(test_time);

Completed in 2031 milliseconds

1 2 3