Searched refs:output_path (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-3.4.0/tools/ci/python_packages/idf_iperf_test_util/ |
D | TestReport.py | 17 def __init__(self, output_path, ap_ssid, throughput_results, sdkconfig_files): argument 31 self.output_path = output_path 37 if not os.path.exists(output_path): 38 os.makedirs(output_path) 144 with open(os.path.join(self.output_path, self.REPORT_FILE_NAME), 'w') as f: 152 def __init__(self, output_path, throughput_results): argument 162 self.output_path = output_path 163 self.raw_data_path = os.path.join(output_path, 'raw_data') 244 with open(os.path.join(self.output_path, self.REPORT_FILE_NAME), 'w') as f:
|
/hal_espressif-3.4.0/tools/ci/python_packages/ttfw_idf/ |
D | CIScanTests.py | 64 output_path = os.path.join(output_dir, 'scan_{}_{}.json'.format(target.lower(), build_system)) 65 with open(output_path, 'w') as fw: 107 if not os.path.exists(args.output_path): 109 os.makedirs(args.output_path) 118 output_json([], target, args.build_system, args.output_path) 192 …output_path = os.path.join(args.output_path, 'scan_{}_{}.json'.format(target.lower(), build_system… 193 with open(output_path, 'w') as fw:
|
/hal_espressif-3.4.0/components/partition_table/ |
D | gen_empty_partition.py | 30 def generate_blanked_file(size, output_path): argument 36 with stdout_binary if output_path == '-' else open(output_path, 'wb') as f:
|
/hal_espressif-3.4.0/tools/ldgen/ |
D | ldgen.py | 119 output_path = args.output 163 if not os.path.exists(os.path.dirname(output_path)): 165 os.makedirs(os.path.dirname(output_path)) 170 … with open(output_path, 'w') as f: # only create output file after generation has suceeded
|
/hal_espressif-3.4.0/tools/ci/python_packages/tiny_test_fw/Utility/ |
D | CIAssignTest.py | 332 def output_configs(self, output_path): argument 337 if not os.path.exists(output_path): 338 os.makedirs(output_path) 340 job.output_config(output_path)
|
/hal_espressif-3.4.0/.gitlab/ci/dependencies/ |
D | generate_rules.py | 278 def output_graph(graph, output_path='output.png'): # type: (pgv.AGraph, str) -> None argument 280 if output_path.endswith('.png'): 281 img_path = output_path 283 img_path = os.path.join(output_path, 'output.png')
|
/hal_espressif-3.4.0/components/espcoredump/corefile/ |
D | elf.py | 330 def dump(self, output_path): # type: (str) -> None argument 371 with open(output_path, 'wb') as fw:
|