/external/toybox/tests/ |
dd.test | 21 "dd if=input of=outFile seek=8860 bs=1M conv=sync,noerror $opt && 22 stat -c \"%s\" outFile && rm -f outFile" "9291431936\n" "I WANT\n" ""
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
OldAndroidZipStreamTest.java | 39 FileOutputStream outFile = new FileOutputStream("/tmp/foo.zip"); 40 outFile.write(zipData, 0, zipData.length); 41 outFile.close();
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/rx/ |
explode | 35 $outfile = shift; 44 if ($outfile) { 45 open(OUT, ">$outfile");
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-gc/ |
gc.exp | 55 set outfile "tmpdir/$filename" 68 if ![ld_simple_link $linker $outfile $options] { 72 if ![ld_nm $nm "" $outfile] {
|
/external/emma/core/java12/com/vladium/emma/report/lcov/ |
ReportGenerator.java | 107 File outFile = m_settings.getOutFile(); 108 if (outFile == null) 110 outFile = new File("coverage.lcov"); 111 m_settings.setOutFile(outFile); 114 final File fullOutFile = Files.newFile(m_settings.getOutDir(), outFile);
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
SwatDeprecated.java | 171 File outFile = new File(outPath); 174 if (outFile.exists()) { 178 bakFile = outFile; 182 tmpFile = outFile; 297 outFile.setLastModified(inFile.lastModified());
|
CodeMangler.java | 310 public boolean processFile(File infile, File outfile) { 390 String outpname = outfile.getParent(); 402 backup = outfile; 404 outfile = File.createTempFile(outfile.getName(), null, outfile.getParentFile()); 413 outModTime = ((outfile.lastModified()+999)/1000)*1000; // round up 414 outstream = new PrintStream(new FileOutputStream(outfile)); 571 System.err.println(" in file: " + outfile.getCanonicalPath()); 587 outfile.renameTo(backup) [all...] |
ReportAPI.java | 89 String outFile = null; 99 outFile = args[++i]; 107 new ReportAPI(oldFile, newFile, internal).writeReport(outFile, html, internal); 261 private boolean writeReport(String outFile, boolean html, boolean internal) { 263 if (outFile != null) { 265 os = new FileOutputStream(outFile);
|
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/ |
LayoutXmlProcessor.java | 202 final File outFile = convertToOutFile(file); 204 FileUtils.copyDirectory(file, outFile); 206 FileUtils.copyFile(file, outFile); 212 final File outFile = convertToOutFile(file); 213 FileUtils.deleteQuietly(outFile);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
decode_with_partial_drops.c | 196 FILE *infile, *outfile; local 212 die("Usage: %s <infile> <outfile> [-t <num threads>] <N-M|N/M|L,S>\n", 233 if(!(outfile = fopen(argv[2], "wb"))) 315 outfile); 325 fclose(outfile);
|
/toolchain/binutils/binutils-2.25/binutils/ |
embedspu.sh | 52 OUTFILE= 64 elif test -z "$OUTFILE"; then 65 OUTFILE="$1" 73 if test -z "$OUTFILE"; then 149 -Wa,-mbig -Wa,-noexecstack -Wl,-r -Wl,-x -o ${OUTFILE} - <<EOF
|
/external/llvm/tools/dsymutil/ |
MachOUtils.cpp | 317 // by \a DM to \a OutFile. The passed \a MS MCStreamer is setup to write to 318 // \a OutFile and it must be using a MachObjectWriter object to do so. 320 raw_fd_ostream &OutFile) { 428 assert(OutFile.tell() == HeaderSize); 434 assert(OutFile.tell() == HeaderSize + sizeof(UUIDCmd)); 479 assert(OutFile.tell() == LoadCommandSize + HeaderSize); 481 assert(OutFile.tell() == SymtabStart); 486 assert(OutFile.tell() == StringStart); 501 assert(OutFile.tell() == StringStart + NewStringsSize); 505 assert(OutFile.tell() == DwarfSegmentStart) [all...] |
/frameworks/base/core/tests/coretests/src/android/os/storage/ |
StorageManagerBaseTest.java | 225 * @param outFile A File representing the file we want to copy the OBB to 228 private void copyRawToFile(int rawResId, File outFile) throws NotFoundException { 237 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG 239 assertTrue(FileUtils.copyToFile(is, outFile)); 240 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG 252 File outFile = null; 255 outFile = new File(filesDir, name); 256 copyRawToFile(rawResId, outFile); 258 if (outFile != null) { 259 outFile.delete() [all...] |
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrProcessorST.java | 181 File outFile = null; 190 outFile = new File (className.replace ('.', File.separatorChar).concat (".class")); 191 fullOutFile = getFullOutFile (null, outFile, IN_CLASSES); 199 // BUG_SF989071: using outFile here instead resulted in 212 if (log.atVERBOSE ()) log.verbose ("destination file [" + outFile + "] skipped: more recent than the source"); 252 outFile = new File (className.replace ('.', File.separatorChar).concat (".class")); 253 fullOutFile = getFullOutFile (null, outFile, IN_CLASSES); 560 final File outFile = getFullOutFile (pathDir, file, IN_CLASSES); 562 addJob (new FileWriteJob (outFile, data, mkdir)); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
cmd.py | 354 def copy_file(self, infile, outfile, 361 infile, outfile, 367 def copy_tree(self, infile, outfile, 374 infile, outfile, 394 def make_file(self, infiles, outfile, func, args, 399 message printed if 'outfile' already exists and is newer than all 405 skip_msg = "skipping %s (inputs unchanged)" % outfile 416 (outfile, ', '.join(infiles)) 418 # If 'outfile' must be regenerated (either because it doesn't 421 if self.force or dep_util.newer_group(infiles, outfile) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
cmd.py | 354 def copy_file(self, infile, outfile, 361 infile, outfile, 367 def copy_tree(self, infile, outfile, 374 infile, outfile, 394 def make_file(self, infiles, outfile, func, args, 399 message printed if 'outfile' already exists and is newer than all 405 skip_msg = "skipping %s (inputs unchanged)" % outfile 416 (outfile, ', '.join(infiles)) 418 # If 'outfile' must be regenerated (either because it doesn't 421 if self.force or dep_util.newer_group(infiles, outfile) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
cmd.py | 354 def copy_file(self, infile, outfile, 361 infile, outfile, 367 def copy_tree(self, infile, outfile, 374 infile, outfile, 394 def make_file(self, infiles, outfile, func, args, 399 message printed if 'outfile' already exists and is newer than all 405 skip_msg = "skipping %s (inputs unchanged)" % outfile 416 (outfile, ', '.join(infiles)) 418 # If 'outfile' must be regenerated (either because it doesn't 421 if self.force or dep_util.newer_group(infiles, outfile) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
cmd.py | 354 def copy_file(self, infile, outfile, 361 infile, outfile, 367 def copy_tree(self, infile, outfile, 374 infile, outfile, 394 def make_file(self, infiles, outfile, func, args, 399 message printed if 'outfile' already exists and is newer than all 405 skip_msg = "skipping %s (inputs unchanged)" % outfile 416 (outfile, ', '.join(infiles)) 418 # If 'outfile' must be regenerated (either because it doesn't 421 if self.force or dep_util.newer_group(infiles, outfile) [all...] |
/external/curl/docs/examples/ |
synctime.c | 200 FILE *outfile; local 203 outfile = NULL; 207 outfile = fopen(OutFileName, "wb"); 208 curl_easy_setopt(curl, CURLOPT_WRITEDATA, outfile); 213 if (outfile != NULL) 214 fclose(outfile);
|
/external/libvpx/libvpx/test/ |
resize_test.cc | 38 int frame_cnt, FILE *const outfile) { 55 (void)fwrite(header, 1, 32, outfile); 58 static void write_ivf_frame_size(FILE *const outfile, const size_t size) { 61 (void)fwrite(header, 1, 4, outfile); 65 FILE *const outfile) { 77 (void)fwrite(header, 1, 12, outfile);
|
/build/blueprint/bootstrap/ |
bootstrap.go | 734 "-b $buildDir -d $outfile.d -o $outfile $in", minibpFile), 735 Description: "minibp $outfile", 736 Depfile: "$outfile.d", 738 "runTests", "timestamp", "timestampdep", "outfile") 741 "outfile": primaryBuilderNinjaFile, 825 "-b $buildDir -d $outfile.d -o $outfile $in", primaryBuilderFile, 827 Description: fmt.Sprintf("%s $outfile", primaryBuilderName), 828 Depfile: "$outfile.d" [all...] |
/external/emma/tools/java/com/vladium/tools/ |
ClassDep.java | 62 final File outFile = new File (args [1]); 85 final File parent = outFile.getParentFile (); 88 final FileOutputStream out = new FileOutputStream (outFile);
|
/external/icu/icu4c/source/extra/uconv/ |
uconv.cpp | 564 FILE * outfile, int verbose); 587 FILE * outfile, int verbose) 1099 FILE *outfile; local [all...] |
/external/vboot_reference/futility/ |
cmd_vbutil_keyblock.c | 80 static int Pack(const char *outfile, const char *datapubkey, 89 if (!outfile) { 145 if (0 != KeyBlockWrite(outfile, block)) {
|
misc.c | 182 void futil_copy_file_or_die(const char *infile, const char *outfile) 187 Debug("%s(%s, %s)\n", __func__, infile, outfile); 199 execl("/bin/cp", "/bin/cp", infile, outfile, NULL);
|