/external/bzip2/ |
bzip2recover.c | 304 FILE* outFile; 436 outFile = NULL; 446 if (outFile != NULL && bitsRead >= rbStart[wrBlock] 454 if (outFile != NULL) { 489 outFile = fopen ( outFileName, "wb" ); 490 if (outFile == NULL) { 495 bsWr = bsOpenWriteStream ( 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/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...] |
/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/ |
MultipartTest.java | 36 FileWriter outFile = new FileWriter(upload); 37 BufferedWriter out = new BufferedWriter(outFile);
|
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/ |
BandwidthEnforcementTestService.java | 67 File outFile = new File(extStorage, outputFile); 68 FileWriter writer = new FileWriter(outFile, true);
|
/packages/apps/Camera/tests/src/com/android/camera/stress/ |
ShotToShotLatency.java | 124 File outFile = new File(CAMERA_TEST_OUTPUT_FILE); 127 output = new BufferedWriter(new FileWriter(outFile, true));
|
/packages/apps/Camera2/tests/src/com/android/camera/stress/ |
ShotToShotLatency.java | 123 File outFile = new File(CAMERA_TEST_OUTPUT_FILE); 126 output = new BufferedWriter(new FileWriter(outFile, true));
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/ |
DataExporter.java | 57 final File outFile = getOutputFile(context, fileName); 65 final ZipOutputStream os = new ZipOutputStream(new FileOutputStream(outFile));
|
/frameworks/base/core/java/android/webkit/ |
CacheManager.java | 74 File outFile;
|
/frameworks/compile/libbcc/bcinfo/tools/ |
main.cpp | 53 std::string outFile; 103 outFile = std::string(inFile.begin(), inFile.end() - 3) + ".ll"; 106 outFile = inFile + ".ll"; 338 new llvm::tool_output_file(outFile.c_str(), errmsg,
|
/cts/tools/cfassembler/src/dxconvext/ |
ClassFileParser.java | 80 // write the outfile to the same directory as the corresponding .java 82 String outFile = absSrcFilePath.substring(0, absSrcFilePath 86 w = new OutputStreamWriter(new FileOutputStream(new File(outFile))); 88 throw new RuntimeException("cannot write to file:"+outFile, e);
|
/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/mdnsresponder/mDNSPosix/ |
parselog.py | 175 outFile = "%s.pdf" % (".".join(inFile.split('.')[:-1])) 176 c = CGPDFContextCreateWithFilename (outFile, pageRect) 177 print "Writing " + outFile
|
/hardware/invensense/65xx/libsensors_iio/ |
MPLSupport.cpp | 237 void dump_dmp_img(const char *outFile) 250 LOGI("HAL DEBUG:write to %s", outFile); 252 read_dmp_img(dmp_path, (char *)outFile);
|
/external/emma/core/java12/com/vladium/emma/report/txt/ |
ReportGenerator.java | 105 File outFile = m_settings.getOutFile (); 106 if (outFile == null) 108 outFile = new File ("coverage.txt"); 109 m_settings.setOutFile (outFile); 112 final File fullOutFile = Files.newFile (m_settings.getOutDir (), outFile);
|
/external/emma/core/java12/com/vladium/emma/report/xml/ |
ReportGenerator.java | 98 File outFile = m_settings.getOutFile (); 99 if (outFile == null) 101 outFile = new File ("coverage.xml"); 102 m_settings.setOutFile (outFile); 105 final File fullOutFile = Files.newFile (m_settings.getOutDir (), outFile);
|
/external/lzma/C/Util/SfxSetup/ |
SfxSetup.c | 410 CSzFile outFile;
453 if (OutFile_OpenW(&outFile, path))
461 if (File_Write(&outFile, outBuffer + offset, &processedSize) != 0 || processedSize != outSizeProcessed)
473 SetFileTime(outFile.handle, NULL, NULL, &mTime);
478 SRes res2 = File_Close(&outFile);
|
/external/yaffs2/yaffs2/utils/ |
mkyaffs2image.c | 76 static int outFile; 228 error = write(outFile,data,chunkSize); 253 // return write(outFile,&pt,sizeof(yaffs_PackedTags2)); 254 return write(outFile,spare, spareSize); 611 outFile = open(image,O_CREAT | O_TRUNC | O_WRONLY, S_IREAD | S_IWRITE); 614 if(outFile < 0) 661 close(outFile); 677 close(outFile);
|
mkyaffsimage.c | 56 static int outFile; 239 error = write(outFile,data,512); 261 return write(outFile,&s,sizeof(yaffs_Spare)); 561 outFile = open(argv[2],O_CREAT | O_TRUNC | O_WRONLY, S_IREAD | S_IWRITE); 564 if(outFile < 0) 575 close(outFile); 589 close(outFile);
|
/external/lzma/C/Util/7z/ |
7zMain.c | 430 CSzFile outFile;
454 else if (OutFile_OpenUtf16(&outFile, destPath))
461 if (File_Write(&outFile, outBuffer + offset, &processedSize) != 0 || processedSize != outSizeProcessed)
467 if (File_Close(&outFile))
|
/external/skia/tools/ |
skhello.cpp | 21 DEFINE_string2(outFile, o, "skhello", "The filename to write the image.");
|
filtermain.cpp | 25 SkDebugf("Usage: filter -i inFile [-o outFile] [--input-dir path] [--output-dir path]\n"); 28 SkDebugf(" -o outFile : result of filtering.\n"); 664 static int filter_picture(const SkString& inFile, const SkString& outFile) { 719 if (!outFile.isEmpty()) { 726 SkFILEWStream outStream(outFile.c_str()); 765 SkString inFile, outFile, inDir, outDir; 799 outFile.set(*argv); 823 sk_tools::make_filepath(&outFile, outDir, inputFilename); 826 filter_picture(inFile, outFile); 830 filter_picture(inFile, outFile); [all...] |
/external/webrtc/src/modules/audio_processing/aec/ |
aec_core.h | 151 FILE *outFile;
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/ |
MediaRecorderTest.java | 74 int videoFormat, int outFormat, String outFile, boolean videoOnly) { 84 mRecorder.setOutputFile(outFile); 175 int videoFormat, int outFormat, String outFile, boolean videoOnly) { 184 mRecorder.setOutputFile(outFile);
|
/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));
|