Searched refs:out_file (Results 1 – 11 of 11) sorted by relevance
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/ |
D | latency.py | 158 '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/ |
D | test_suite.py | 65 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/ |
D | iperf_client.py | 166 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/ |
D | dexter.cc | 297 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/ |
D | WifiIOTTwPkg1Test.py | 145 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))
|
D | WifiRvrTwTest.py | 348 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/ |
D | test_finder_utils.py | 362 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/ |
D | test_finder_utils.py | 370 for out_file in out_files: 371 if out_file: 372 out_dirs.append(os.path.dirname(out_file.strip()))
|
/tools/carrier_settings/python/ |
D | update_apn.py | 254 with open(FLAGS.out_file, 'w', encoding='utf-8') as apnout:
|
/tools/test/connectivity/acts/framework/acts/test_utils/coex/ |
D | coex_test_utils.py | 159 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/ |
D | wifi_test_utils.py | 1883 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)
|