/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/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/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/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)
|
connection_worker.py | 274 if result.duration_seconds < self._config.test_time: 277 (result.duration_seconds, self._config.test_time))
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
regrtest.py | 455 ok, test_time = result 456 test_times.append((test_time, test)) [all...] |
test_genericpath.py | 86 def test_time(self): member in class:GenericTest
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
regrtest.py | 455 ok, test_time = result 456 test_times.append((test_time, test)) [all...] |
test_genericpath.py | 86 def test_time(self): member in class:GenericTest
|
/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...] |
test_genericpath.py | 86 def test_time(self): member in class:GenericTest
|
/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/utils/ |
test_importer.py | 261 test_time = { 'short' : 1, 285 test.test_time = int(data.time) 286 if test.test_time < 1 or test.time > 3: 291 if not test.test_time and str == type(data.time): 292 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...] |
nettest_sdp.c | 381 if (test_time) { 382 sdp_stream_request->test_length = test_time; 466 if (test_time) { 476 start_timer(test_time); [all...] |
nettest_bsd.c | [all...] |
nettest_dlpi.c | 595 if (test_time) { 596 dlpi_co_stream_request->test_length = test_time; 658 if (test_time) { 662 start_timer(test_time); [all...] |
nettest_sctp.c | 540 if (test_time) { 541 sctp_stream_request->test_length = test_time; 634 if (test_time) { 644 start_timer(test_time); [all...] |
nettest_xti.c | 740 if (test_time) { 741 xti_tcp_stream_request->test_length = test_time; 848 if (test_time) { 858 start_timer(test_time); [all...] |
/external/chromium-trace/catapult/third_party/Paste/tests/test_util/ |
test_datetimeutil.py | 28 def test_time(): function
|
/external/autotest/scheduler/ |
scheduler_models_unittest.py | 68 test_time = self.god.create_mock_function('time') 69 test_time.expect_call().and_return(33) 70 test_time.expect_call().and_return(34.01) 71 test_time.expect_call().and_return(34.99) 72 test_time.expect_call().and_return(35.01) 78 now_func=test_time) # time 33
|