Home
last modified time | relevance | path

Searched refs:out_file (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Duu.py42 def encode(in_file, out_file, name=None, mode=None): argument
64 if out_file == '-':
65 out_file = sys.stdout
66 elif isinstance(out_file, basestring):
67 out_file = open(out_file, 'wb')
68 opened_files.append(out_file)
79 out_file.write('begin %o %s\n' % ((mode&0777),name))
82 out_file.write(binascii.b2a_uu(data))
84 out_file.write(' \nend\n')
90 def decode(in_file, out_file=None, mode=None, quiet=0): argument
[all …]
/device/google/cuttlefish/tools/
Dtombstone_to_line.py59 def simple_match(line, info, indent, out_file): argument
61 line, info.file_name, info.line_number), file=out_file)
64 def source_match(line, info, indent, out_file): argument
72 simple_match(line, info, indent, out_file)
74 print(line, file=out_file)
76 ' ' * indent, info.file_name, info.line_number), file=out_file)
78 file=out_file)
81 def process(in_file, out_file, args): argument
93 print(line, file=out_file)
96 source_match(line, info, len(groups.group(p[1])), out_file)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_text_file.py56 out_file = open(filename, "w")
58 out_file.write(TEST_DATA)
60 out_file.close()
/device/generic/goldfish/fvpbase/
Drun_model31 -C bp.pl011_uart0.out_file="$ANDROID_PRODUCT_OUT/uart0.log" \
32 -C bp.pl011_uart1.out_file="$ANDROID_PRODUCT_OUT/uart1.log" \
/device/generic/goldfish-opengl/
Dcmake_transform.py157 with open(args.output, 'w') as out_file:
158 out_file.write(json.dumps(modules, indent=2))
/device/google/cuttlefish/host/commands/assemble_cvd/
Dimage_aggregator.cc268 auto out_file = cvd::SharedFD::Open(out_file_name.c_str(), O_RDWR | O_CREAT | O_TRUNC, in DeAndroidSparse() local
270 int write_fd = out_file->UNMANAGED_Dup(); in DeAndroidSparse()