Home
last modified time | relevance | path

Searched refs:output_path (Results 1 – 5 of 5) sorted by relevance

/development/vndk/tools/header-checker/tests/
Dgen_all.py34 output_path = os.path.join(EXPECTED_DIR, input_rel_path)
36 print('generating', output_path, '...')
39 os.makedirs(os.path.dirname(output_path), exist_ok=True)
40 with open(output_path, 'w') as f:
Dmodule.py125 output_path = os.path.join(tmp,
127 dumps_to_link.append(output_path)
129 src, output_path, self.export_include_dirs,
/development/testrunner/coverage/
Dcoverage.py72 output_path=None, argument
89 if output_path is None:
93 output_path = os.path.join(self._out_path,
100 coverage_local_path = os.path.join(output_path,
104 report_path = os.path.join(output_path,
213 output_path = os.path.join(self._output_root_path, target_name)
215 if os.path.isdir(output_path) and target is not None:
216 coverage_files = self._FindCoverageFiles(output_path)
217 combined_coverage = os.path.join(output_path, "%s.%s" %
220 report_path = os.path.join(output_path, target_name)
[all …]
/development/vndk/tools/header-checker/utils/
Dutils.py81 def read_output_content(output_path, replace_str): argument
82 with open(output_path, 'r') as f:
92 output_path = os.path.join(tmp, os.path.basename(input_path)) + '.dump'
93 run_header_abi_dumper_on_file(input_path, output_path,
95 return read_output_content(output_path, AOSP_DIR)
98 def run_header_abi_dumper_on_file(input_path, output_path, argument
104 cmd = ['header-abi-dumper', '-o', output_path, input_path]
127 def run_header_abi_linker(output_path, inputs, version_script, api, arch, argument
130 cmd = ['header-abi-linker', '-o', output_path, '-v', version_script,
139 return read_output_content(output_path, AOSP_DIR)
/development/vndk/tools/definition-tool/tools/
Dremove_dt_needed.py220 def replace_dt_needed(input_path, output_path, dt_needed_name): argument
226 with open(output_path, 'wb') as f: