Home
last modified time | relevance | path

Searched refs:out_file (Results 1 – 11 of 11) sorted by relevance

/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/
Dlatency.py158 'wb') as out_file:
159 csv_writer = csv.writer(out_file)
172 'wb') as out_file:
173 csv_writer = csv.writer(out_file)
182 file=out_file)
183 print('Min = {}'.format(summary['min_lat']), file=out_file)
184 print('Max = {}'.format(summary['max_lat']), file=out_file)
185 print('Average = {}'.format(summary['average_lat']), file=out_file)
186 print('Median = {}'.format(summary['median_lat']), file=out_file)
187 print('90 %ile = {}'.format(summary['90pctile']), file=out_file)
[all …]
/tools/test/connectivity/acts/framework/tests/
Dtest_suite.py65 with open(result.output_file, 'r') as out_file:
66 print(out_file.read(), file=sys.stderr)
71 with open(result.output_file, 'r') as out_file:
72 print(out_file.read())
/tools/test/connectivity/acts/framework/acts/controllers/
Diperf_client.py166 with open(full_out_path, 'w') as out_file:
167 subprocess.call(iperf_cmd, stdout=out_file)
231 with open(full_out_path, 'w') as out_file:
232 out_file.write(iperf_output)
303 with open(full_out_path, 'w') as out_file:
304 out_file.write('\n'.join(clean_out))
/tools/dexter/dexter/
Ddexter.cc297 FILE* out_file = fopen(out_dex_filename_, "wb"); in CreateNewImage() local
298 if (out_file == nullptr) { in CreateNewImage()
304 fclose(out_file); in CreateNewImage()
308 SLICER_CHECK(fwrite(new_image, 1, new_image_size, out_file) == new_image_size); in CreateNewImage()
/tools/test/connectivity/acts/tests/google/wifi/
DWifiIOTTwPkg1Test.py145 with open(client_output_path, 'w') as out_file:
146 out_file.write("\n".join(data))
189 with open(client_output_path, 'w') as out_file:
190 out_file.write("\n".join(data))
DWifiRvrTwTest.py348 with open(client_output_path, 'w') as out_file:
349 out_file.write("\n".join(data))
397 with open(client_output_path, 'w') as out_file:
398 out_file.write("\n".join(data))
/tools/tradefederation/core/atest/test_finders/
Dtest_finder_utils.py362 for out_file in out_files:
363 if out_file:
364 out_dirs.append(os.path.dirname(out_file.strip()))
/tools/asuite/atest/test_finders/
Dtest_finder_utils.py370 for out_file in out_files:
371 if out_file:
372 out_dirs.append(os.path.dirname(out_file.strip()))
/tools/carrier_settings/python/
Dupdate_apn.py254 with open(FLAGS.out_file, 'w', encoding='utf-8') as apnout:
/tools/test/connectivity/acts/framework/acts/test_utils/coex/
Dcoex_test_utils.py159 out_file = "bluetooth_dumpsys_%s.txt" % dump_counter
161 pri_ad.serial, dumpsys_path, out_file)
163 file_path = os.path.join(dumpsys_path, out_file)
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/
Dwifi_test_utils.py1883 def convert_pem_key_to_pkcs8(in_file, out_file): argument
1897 out_file.endswith(".der"), "Output file has to be .der.")
1899 " -topk8").format(in_file, out_file)