/prebuilts/gdb/darwin-x86/lib/python2.7/ |
uu.py | 29 encode(in_file, out_file [,name, mode]) 30 decode(in_file [, out_file, mode]) 42 def encode(in_file, out_file, name=None, mode=None): 62 # Open out_file if it is a pathname 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) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
uu.py | 29 encode(in_file, out_file [,name, mode]) 30 decode(in_file [, out_file, mode]) 42 def encode(in_file, out_file, name=None, mode=None): 62 # Open out_file if it is a pathname 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) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
uu.py | 29 encode(in_file, out_file [,name, mode]) 30 decode(in_file [, out_file, mode]) 42 def encode(in_file, out_file, name=None, mode=None): 62 # Open out_file if it is a pathname 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) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
uu.py | 29 encode(in_file, out_file [,name, mode]) 30 decode(in_file [, out_file, mode]) 42 def encode(in_file, out_file, name=None, mode=None): 62 # Open out_file if it is a pathname 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) [all...] |
/external/tpm2/generator/ |
structure_generator.py | 203 def OutputMarshal(self, out_file, typemap): 207 out_file: The output file. 215 out_file.write( 220 typemap[self.field_type].OutputMarshalCall(out_file, self) 222 def OutputUnmarshal(self, out_file, typemap): 226 out_file: The output file. 234 out_file.write( 239 typemap[self.field_type].OutputUnmarshalCall(out_file, self) 306 def _GetBaseType(self, out_file, marshalled_types, typemap): 317 out_file: The output file [all...] |
command_generator.py | 409 def OutputMarshalFunction(self, out_file, typemap): 413 out_file: File to be written to opened by the caller. 421 out_file.write(self._MARSHAL_COMMAND_START % { 425 out_file.write('\n // Marshal response handles.') 428 out_file, Field(handle['type'], 431 out_file.write(self._PARAMETERSIZE_CHECK) 433 out_file.write('\n // Marshal response parameters.') 436 out_file, Field(parameter['type'], parameter['name'], 438 out_file.write(self._MARSHAL_END) 440 def OutputUnmarshalFunction(self, out_file, typemap) [all...] |
structure_generator_test.py | 28 out_file = StringIO.StringIO() 29 typedef2.OutputMarshalImpl(out_file, marshalled_types, typemap) 32 out_file.close() 42 out_file = StringIO.StringIO() 43 constant.OutputMarshalImpl(out_file, marshalled_types, typemap) 46 out_file.close() 57 out_file = StringIO.StringIO() 58 attributeStruct.OutputMarshalImpl(out_file, marshalled_types, typemap) 61 out_file.close() 73 out_file = StringIO.StringIO( [all...] |
/external/e2fsprogs/debugfs/ |
logdump.c | 79 FILE *out_file; local 170 out_file = stdout; 173 out_file = fopen(out_fn, "w"); 174 if (!out_file) { 248 fprintf(out_file, "Using external journal found at %s\n", 255 dump_journal(argv[0], out_file, &journal_source); 263 if (out_file && (out_file != stdout)) 264 fclose(out_file); 332 static void dump_journal(char *cmdname, FILE *out_file, [all...] |
/system/tpm/trunks/generator/ |
generator_test.py | 37 out_file = StringIO.StringIO() 39 typedef.OutputForward(out_file, defined_types, typemap) 41 typedef.Output(out_file, defined_types, typemap) 42 self.assertEqual(out_file.getvalue(), 'typedef int INT;\n') 53 out_file.close() 62 out_file = StringIO.StringIO() 63 typedef2.OutputSerialize(out_file, serialized_types, typemap) 66 out_file.close() 73 out_file = StringIO.StringIO() 74 constant.Output(out_file, defined_types, typemap [all...] |
generator.py | 308 def OutputForward(self, out_file, defined_types, typemap): 309 """Writes a typedef definition to |out_file|. 315 out_file: The output file. 320 self.Output(out_file, defined_types, typemap) 322 def Output(self, out_file, defined_types, typemap): 323 """Writes a typedef definition to |out_file|. 328 out_file: The output file. 337 typemap[self.old_type].OutputForward(out_file, defined_types, typemap) 338 out_file.write(self._TYPEDEF % {'old_type': self.old_type, 342 def OutputSerialize(self, out_file, serialized_types, typemap) [all...] |
/hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/ |
ml_load_dmp.h | 29 void read_dmp_img(char *dmp_path, char *out_file);
|
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/ |
ml_load_dmp.h | 29 void read_dmp_img(char *dmp_path, char *out_file);
|
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/ |
rtp_analyze.cc | 83 FILE* out_file; local 85 out_file = fopen(argv[2], "wt"); 86 if (!out_file) { 92 out_file = stdout; 96 fprintf(out_file, "SeqNo TimeStamp SendTime Size PT M SSRC"); 98 fprintf(out_file, " AuLvl (V)"); 101 fprintf(out_file, " AbsSendTime"); 103 fprintf(out_file, "\n"); 116 fprintf(out_file, 126 fprintf(out_file, [all...] |
/cts/tests/tests/security/tools/ |
format_cert.sh | 30 out_file="$2" 48 if [ "$out_file" == "" ]; then 49 out_file="$subject_hash.0" 50 echo "Auto-generated output file name: $out_file" 54 "$OPENSSL" x509 -in "$in_file" -inform $in_form -outform pem > "$out_file" && \ 56 >> "$out_file"
|
/build/tools/releasetools/ |
target_files_diff.py | 141 def diff(name, file1, file2, out_file): 154 print("%s: Binary files differ" % name, file=out_file) 157 print("%s: %s" % (name, line), file=out_file) 159 def recursiveDiff(prefix, dir1, dir2, out_file): 180 file=out_file) 183 print("%s: File types differ, skipping compare" % name, file=out_file) 192 print("%s: File types differ, skipping compare" % name, file=out_file) 197 (name, stat1.st_mode, stat2.st_mode), file=out_file) 200 recursiveDiff(name, name1, name2, out_file) 202 diff(name, name1, name2, out_file) [all...] |
/cts/tools/selinux/ |
SELinuxNeverallowTestGen.py | 50 with open(output_file, 'w') as out_file: 51 out_file.write(src_header) 52 out_file.write(src_body) 53 out_file.write(src_footer)
|
/dalvik/tools/ |
get-hprof | 33 OUT_FILE=heap-dump.hprof 35 adb pull "$FILE_BASE" "$OUT_FILE" 40 echo "hat $OUT_FILE"
|
/external/wpa_supplicant_8/src/utils/ |
wpa_debug.c | 61 static FILE *out_file = NULL; variable 75 if (out_file) { 76 fprintf(out_file, "%ld.%06u: ", (long) tv.sec, 221 if (out_file) { 222 vfprintf(out_file, fmt, ap); 223 fprintf(out_file, "\n"); 348 if (out_file) { 349 fprintf(out_file, "%s - hexdump(len=%lu):", 352 fprintf(out_file, " [NULL]"); 355 fprintf(out_file, " %02x", buf[i]) [all...] |
/cts/tools/vm-tests-tf/src/util/build/ |
DasmBuildStep.java | 104 File out_file = null; local 107 out_file = new File(class_name + ".dex"); 109 out_file = new File(dest_dir, class_name + ".dex"); 127 outp = new FileOutputStream(out_file); 133 " while writing " + out_file.getPath()); 137 out_file.delete();
|
/external/webrtc/webrtc/modules/audio_coding/neteq/test/ |
RTPchange.cc | 41 FILE* out_file = fopen(argv[3], "wb"); local 42 if (!out_file) { 77 fputs(first_line, out_file); 85 if (fwrite(first_line, 1, kRtpDumpHeaderSize, out_file) 121 if ((*it)->writeToFile(out_file) < 0) { 130 fclose(out_file);
|
audio_classifier_test.cc | 65 FILE* out_file = fopen(output_filename.c_str(), "wb"); local 66 if (!out_file) { 77 if (!fwrite(&is_music, sizeof(is_music), 1, out_file)) { 87 if (!fwrite(&music_prob, sizeof(music_prob), 1, out_file)) { 103 fclose(out_file);
|
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
nonlinear_beamformer_test.cc | 46 WavWriter out_file(FLAGS_o, in_file.sample_rate(), 1); 59 FLAGS_o.c_str(), out_file.num_channels(), out_file.sample_rate()); 65 rtc::CheckedDivExact(out_file.sample_rate(), kChunksPerSecond), 66 out_file.num_channels()); 80 out_file.WriteSamples(&interleaved[0], interleaved.size());
|
/external/libvpx/libvpx/build/make/ |
version.sh | 23 out_file=${2} 71 if [ -n "$out_file" ]; then 72 diff $$.tmp ${out_file} >/dev/null 2>&1 || cat $$.tmp > ${out_file}
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/ |
version.sh | 23 out_file=${2} 71 if [ -n "$out_file" ]; then 72 diff $$.tmp ${out_file} >/dev/null 2>&1 || cat $$.tmp > ${out_file}
|
/external/webrtc/webrtc/modules/audio_processing/test/ |
audio_file_processor.cc | 46 scoped_ptr<WavWriter> out_file) 49 out_buf_(GetChannelBuffer(*out_file)), 51 output_config_(GetStreamConfig(*out_file)), 53 buffer_writer_(std::move(out_file)) {} 71 scoped_ptr<WavWriter> out_file) 74 out_buf_(GetChannelBuffer(*out_file)), 75 output_config_(GetStreamConfig(*out_file)), 76 buffer_writer_(std::move(out_file)) {
|