Lines Matching refs:setup_params
25 def show_devices(devices, setup_params): argument
38 rutils.setup_hw_host(host, setup_params)
54 status, buf = host.execute([setup_params['wpa_supplicant'], "-v"])
56 print("\t" + setup_params['wpa_supplicant'] + " not find\n")
62 status, buf = host.execute([setup_params['hostapd'], "-v"])
64 print("\t" + setup_params['hostapd'] + " not find\n")
70 status, buf = host.execute([setup_params['iperf'], "-v"])
72 print("\t" + setup_params['iperf'] + " not find\n")
79 def check_device(devices, setup_params, dev_name, monitor=False): argument
86 rutils.setup_hw_host(host, setup_params)
99 status, buf = host.execute(["ls", "-l", setup_params['wpa_supplicant']])
103 status, buf = host.execute(["ls", "-l", setup_params['hostapd']])
107 status, buf = host.execute(["which", setup_params['iperf']])
115 def check_devices(devices, setup_params, refs, duts, monitors): argument
118 check_device(devices, setup_params, dut)
120 check_device(devices, setup_params, ref)
124 check_device(devices, setup_params, monitor, monitor=True)