Searched refs:output_path (Results 1 – 6 of 6) sorted by relevance
/development/vndk/tools/header-checker/tests/ |
D | gen_all.py | 35 output_path = os.path.join(EXPECTED_DIR, input_rel_path) 37 print('generating', output_path, '...') 38 os.makedirs(os.path.dirname(output_path), exist_ok=True) 39 run_header_abi_dumper(input_path, output_path,
|
D | module.py | 52 def make_dump(self, output_path): argument 91 def make_dump(self, output_path): argument 93 self.src, output_path, cflags=self.cflags, 117 def make_dump(self, output_path): argument 138 with open(output_path, 'w') as output_file:
|
D | test.py | 61 output_path = f.name 62 run_header_abi_dumper(input_path, output_path, cflags, 64 actual_output = _read_output_content(output_path)
|
/development/testrunner/coverage/ |
D | coverage.py | 72 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/ |
D | utils.py | 105 def run_header_abi_dumper(input_path, output_path, cflags=tuple(), argument 110 cmd = ['header-abi-dumper', '-o', output_path, input_path] 131 _validate_dump_content(output_path) 134 def run_header_abi_linker(inputs, output_path, version_script, api, arch, argument 137 cmd = ['header-abi-linker', '-o', output_path, '-v', version_script, 146 _validate_dump_content(output_path)
|
/development/vndk/tools/definition-tool/tools/ |
D | remove_dt_needed.py | 220 def replace_dt_needed(input_path, output_path, dt_needed_name): argument 226 with open(output_path, 'wb') as f:
|