Searched refs:out_file (Results 1 – 5 of 5) 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/definition-tool/ |
D | vndk_definition_tool.py | 159 out_file = kwargs.get('file', sys.stdout) 162 out_file.write(sep) 164 out_file.write(arg) 166 out_file.flush() 167 out_file.buffer.write(arg) 168 out_file.flush() 170 out_file.write(str(arg)) 171 out_file.write(end)
|