Searched refs:out_file (Results 1 – 7 of 7) sorted by relevance
/development/vndk/tools/definition-tool/tests/ |
D | test_elfdump.py | 63 out_file = os.path.join(cls.test_dir, 'main.out') 64 target.link(out_file, [obj_file], ['-ldl', '-lc', '-lstdc++']) 72 out_file = os.path.join(cls.test_dir, 'libtest.so') 73 target.link(out_file, [obj_file], ['-shared', '-lc']) 76 out_file = os.path.join(cls.test_dir, 'libtest-rpath.so') 77 target.link(out_file, [obj_file], 82 out_file = os.path.join(cls.test_dir, 'libtest-rpath-multi.so') 83 target.link(out_file, [obj_file], 88 out_file = os.path.join(cls.test_dir, 'libtest-runpath.so') 89 target.link(out_file, [obj_file], [all …]
|
D | ndk_toolchain.py | 112 def link(self, out_file, obj_files, ldflags): argument 122 cmd = [clang, '-o', out_file]
|
/development/gsi/gsi_util/gsi_util/utils/ |
D | debugfs.py | 27 def dump(image_file, file_spec, out_file): argument 37 debugfs_command = 'dump {} {}'.format(file_spec, out_file) 39 if not os.path.isfile(out_file):
|
/development/gsi/gsi_util/gsi_util/mounters/ |
D | image_mounter.py | 51 out_file = os.path.join(self._temp_dir, filename_in_storage) 53 filename_in_storage, out_file) 55 self._make_parent_dirs(out_file) 57 if not debugfs.dump(self._raw_image_file, filespec, out_file): 61 return base_mounter.MounterFile(out_file)
|
/development/vndk/tools/elfcheck/elfcheck/ |
D | rewriter.py | 89 def flush(self, out_file): argument 94 print(line, file=out_file) 230 def _rewrite_lines(self, lines, out_file): argument 243 stashed_lines.flush(out_file) 270 stashed_lines.flush(out_file) 273 def rewrite(self, out_file=sys.stdout): argument 280 self._rewrite_lines(lines, out_file)
|
/development/tools/privapp_permissions/ |
D | privapp_permissions.py | 600 out_file = open(out_file_name, 'w') 604 print_xml(results[p], apps_redefine_base, p, out_file) 605 out_file.close()
|
/development/scripts/ |
D | cargo2android.py | 1259 with open(cargo_toml, 'a') as out_file: 1260 out_file.write('[workspace]\n') 1281 with open(cargo_out, 'a') as out_file: 1282 out_file.write('### Running: ' + cmd + '\n') 1285 with open(cargo_toml, 'w') as out_file: 1286 out_file.writelines(cargo_toml_lines)
|