/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
trace.py | 83 def usage(outfile): 84 outfile.write("""Usage: %s [OPTIONS] <file> [ARGS] 223 callers=None, outfile=None): 237 self.outfile = outfile 349 if self.outfile: 350 # try and store counts and module info into self.outfile 353 open(self.outfile, 'wb'), 1) 361 outfile = open(path, "w") 374 outfile.write("%5d: " % lines_hit[lineno] [all...] |
cProfile.py | 169 parser.add_option('-o', '--outfile', dest="outfile", 170 help="Save stats to <outfile>", default=None) 192 runctx(code, globs, None, options.outfile, options.sort)
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/arch/ |
arch.exp | 146 set outfile [open "arch_results.txt" w 0666] 147 puts $outfile "# Generated file. DO NOT EDIT" 148 puts $outfile "#" 149 puts $outfile "# This file is generated by gas/testsuite/gas/sh/arch/arch.exp ." 150 puts $outfile "# It contains the expected results of the tests." 151 puts $outfile "# If the tests are failing because the expected results" 152 puts $outfile "# have changed then run 'make check' and copy the new file" 153 puts $outfile "# from <objdir>/gas/testsuite/arch_results.txt" 154 puts $outfile "# to <srcdir>/gas/testsuite/gas/sh/arch/arch_expected.txt ." 155 puts $outfile "# Make sure the new expected results are ALL correct. [all...] |
/external/autotest/client/site_tests/platform_UdevVars/ |
platform_UdevVars.py | 67 outfile = os.path.join(self.debugdir, "udevattrs.%s" % devname) 69 device.sys_path, outfile)) 71 outfile = os.path.join(self.debugdir, "udevprops.%s" % devname) 73 device.sys_path, outfile))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/ |
varblock.py | 74 def write_varint(outfile, value): 77 @param outfile: the file-like object to write to. It should have a write() 86 outfile.write(ZERO_BYTE) 97 outfile.write(byte(to_write))
|
/external/curl/docs/examples/ |
smooth-gtk-thread.c | 70 FILE *outfile; local 88 outfile = fopen(urls[j], "w"); 95 curl_easy_setopt(curl, CURLOPT_WRITEDATA, outfile); 103 fclose(outfile);
|
/external/emma/core/res/com/vladium/emma/instr/ |
instr_usage.res | 12 'out', 'outfile':
|
/external/libvpx/libvpx/examples/ |
vp8_multi_resolution_encoder.c | 136 static void write_ivf_file_header(FILE *outfile, 157 (void) fwrite(header, 1, 32, outfile); 160 static void write_ivf_frame_header(FILE *outfile, 174 (void) fwrite(header, 1, 12, outfile); 322 FILE *infile, *outfile[NUM_ENCODERS]; local 380 die("Usage: %s <width> <height> <frame_rate> <infile> <outfile(s)> " 402 outfile[i] = NULL; 406 if(!(outfile[i] = fopen(argv[i+5], "wb"))) 524 if(outfile[i]) 525 write_ivf_file_header(outfile[i], &cfg[i], 0) [all...] |
/external/llvm/docs/CommandGuide/ |
llvm-stress.rst | 7 :program:`llvm-stress` [-size=filesize] [-seed=initialseed] [-o=outfile]
|
/external/llvm/tools/dsymutil/ |
MachOUtils.h | 33 raw_fd_ostream &OutFile);
|
/external/selinux/policycoreutils/setfiles/ |
restore.h | 36 FILE *outfile; member in struct:restore_opts
|
setfiles.c | 172 r_opts.outfile = NULL; 301 r_opts.outfile = stdout; 305 r_opts.outfile = fopen(optarg, "w"); 306 if (!r_opts.outfile) { 312 __fsetlocking(r_opts.outfile, FSETLOCKING_BYCALLER); 450 if (r_opts.outfile) 451 fclose(r_opts.outfile);
|
/frameworks/base/core/tests/coretests/src/android/app/ |
DownloadManagerStressTest.java | 162 File outFile = File.createTempFile("DM_TEST", null, new File(CACHE_DIR)); 176 fo = new FileOutputStream(outFile); 201 if (outFile != null) { 202 outFile.delete();
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
cProfile.py | 169 parser.add_option('-o', '--outfile', dest="outfile", 170 help="Save stats to <outfile>", default=None) 192 runctx(code, globs, None, options.outfile, options.sort)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
cProfile.py | 169 parser.add_option('-o', '--outfile', dest="outfile", 170 help="Save stats to <outfile>", default=None) 192 runctx(code, globs, None, options.outfile, options.sort)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
cProfile.py | 169 parser.add_option('-o', '--outfile', dest="outfile", 170 help="Save stats to <outfile>", default=None) 192 runctx(code, globs, None, options.outfile, options.sort)
|
/system/connectivity/shill/ |
certificate_file_unittest.cc | 134 FilePath outfile; local 138 outfile = certificate_file.CreatePEMFromStrings(vector<string>{ kPEMData }); 139 EXPECT_TRUE(base::PathExists(outfile)); 142 EXPECT_FALSE(base::PathExists(outfile));
|
/external/vulkan-validation-layers/ |
generator.py | 446 self.outFile = None 549 self.outFile = open(self.genOpts.filename, 'w') 551 self.outFile = sys.stdout 556 self.outFile.flush() 557 if (self.outFile != sys.stdout and self.outFile != sys.stderr): 558 self.outFile.close() 711 write('', file=self.outFile) [all...] |
/system/core/adb/ |
adb_auth_host.cpp | 150 FILE *outfile = NULL; local 167 outfile = fopen(path, "w"); 168 if (!outfile) { 195 if (fwrite(encoded, encoded_length, 1, outfile) != 1 || 196 fwrite(info, strlen(info), 1, outfile) != 1) { 204 if (outfile != NULL) { 205 fclose(outfile);
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py2/ |
shell.py | 253 def _filepipespawn(infile, outfile, argv, env): 268 outfile = pickle.loads(%(outfile)s) 276 if outfile is not None: 277 outfile = open(outfile, 'wb') 278 os.dup2(outfile.fileno(), 1) 279 outfile.close() 286 'outfile': repr(_pickle.dumps(_os.path.abspath(outfile))), [all...] |
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/_setup/py2/ |
shell.py | 253 def _filepipespawn(infile, outfile, argv, env): 268 outfile = pickle.loads(%(outfile)s) 276 if outfile is not None: 277 outfile = open(outfile, 'wb') 278 os.dup2(outfile.fileno(), 1) 279 outfile.close() 286 'outfile': repr(_pickle.dumps(_os.path.abspath(outfile))), [all...] |
/external/chromium-trace/catapult/third_party/coverage/coverage/ |
misc.py | 154 def output_encoding(outfile=None): 155 """Determine the encoding to use for output written to `outfile` or stdout.""" 156 if outfile is None: 157 outfile = sys.stdout 159 getattr(outfile, "encoding", None) or
|
xmlreport.py | 50 def report(self, morfs, outfile=None): 55 `outfile` is a file object to write the XML to. 59 outfile = outfile or sys.stdout 128 outfile.write(out)
|
/external/lzma/Java/SevenZip/ |
LzmaAlone.java | 30 public String OutFile;
134 OutFile = s;
193 java.io.File outFile = new java.io.File(params.OutFile);
196 java.io.BufferedOutputStream outStream = new java.io.BufferedOutputStream(new java.io.FileOutputStream(outFile));
|
/external/skia/platform_tools/android/tests/ |
makefile_writer_tests.py | 175 fd, outfile = tempfile.mkstemp() 176 with open(outfile, 'w') as f: 181 utils.compare_to_expectation(outfile, filename, self.assertTrue, 190 with open(outfile, 'r') as f: 192 os.remove(outfile)
|