Home
last modified time | relevance | path

Searched refs:iperf_args (Results 1 – 9 of 9) sorted by relevance

/tools/test/connectivity/acts/framework/acts/test_utils/power/
DIperfHelper.py48 iperf_args = '-i 1 -t {} -p {} -J'.format(self.duration, self.port)
51 iperf_args = iperf_args + ' -u'
53 iperf_args = iperf_args + ' -R'
57 iperf_args = iperf_args + ' -b {}M'.format(self.bandwidth)
62 iperf_args += ' -w {}M'.format(self.window)
68 iperf_args = iperf_args + ' > %s' % self.results_filename_phone
70 self.iperf_args = iperf_args
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/
Dwifi_performance_test_utils.py686 def start_iperf_client_nb(iperf_client, iperf_server_address, iperf_args, tag, argument
688 return iperf_client.start(iperf_server_address, iperf_args, tag, timeout)
1132 iperf_args = '-i {} -t {} -J '.format(interval, duration)
1134 iperf_args = iperf_args + '-u -b {} -l 1400'.format(udp_throughput)
1136 iperf_args = iperf_args + '-P {}'.format(tcp_processes)
1138 iperf_args = iperf_args + '-w {}'.format(tcp_window)
1140 iperf_args = iperf_args + ' -R'
1141 return iperf_args
/tools/test/connectivity/acts_tests/tests/google/power/wifi/
DPowerWiFitrafficTest.py61 self.dut, self.iperf_server_address, self.iperf_args)
70 iperf_args = '-i 1 -t {} -p {} -J'.format(self.iperf_duration,
73 iperf_args = iperf_args + "-u -b 2g"
75 iperf_args = iperf_args + ' -R'
80 self.iperf_args = iperf_args + ' > %s' % TEMP_FILE
DPowerWiFiHotspotTest.py228 self.client_iperf_helper.iperf_args)
/tools/test/connectivity/acts/framework/acts/controllers/
Diperf_client.py122 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument
142 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument
163 iperf_cmd = [str(iperf_binary), '-c', ip] + iperf_args.split(' ')
185 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument
206 iperf_cmd = '{} -c {} {}'.format(iperf_binary, ip, iperf_args)
288 def start(self, ip, iperf_args, tag, timeout=3600, iperf_binary=None): argument
312 iperf_cmd = '{} -c {} {}'.format(iperf_binary, ip, iperf_args)
/tools/test/connectivity/acts/tests/google/wifi/
DWifiRoamingPerformanceTest.py526 iperf_args = '-i {} -t {} -J'.format(
529 iperf_args = iperf_args + ' -R'
531 self.iperf_client, iperf_server_address, iperf_args, 0,
DWifiManagerTest.py273 def run_iperf(self, iperf_args): argument
280 result, data = self.dut.run_iperf_client(iperf_addr, iperf_args)
/tools/test/connectivity/acts/framework/acts/test_utils/coex/
DCoexBaseTest.py207 iperf_args = get_iperf_arg_string(
213 iperf_args = get_iperf_arg_string(
221 self.iperf_client.start(ip, iperf_args, self.tag))
/tools/test/connectivity/acts/framework/acts/test_utils/power/cellular/
Dcellular_traffic_power_test.py378 "&'".format(self.iperf_server_address, iph.iperf_args))