Searched defs:outFile (Results 1 - 25 of 29) sorted by relevance

12

/external/emma/core/java12/com/vladium/emma/rt/
H A DRTCoverageDataPersister.java38 final File outFile, final boolean merge)
54 DataFactory.persist (cdataView, outFile, merge);
61 log.info ("runtime coverage data " + (merge ? "merged into" : "written to") + " [" + outFile.getAbsolutePath () + "] {in " + (end - start) + " ms}");
37 dumpCoverageData(final ICoverageData cdata, final boolean useSnapshot, final File outFile, final boolean merge) argument
H A DRTExitHook.java105 RTExitHook (final Class RT, final ICoverageData cdata, final File outFile, final boolean merge) argument
110 m_outFile = outFile;
H A DRT.java144 * @param outFile
148 public static synchronized void dumpCoverageData (File outFile, final boolean merge, final boolean stopDataCollection) argument
151 outFile = outFile != null ? outFile : getCoverageOutFile ();
156 RTCoverageDataPersister.dumpCoverageData (cdata, ! stopDataCollection, outFile, merge);
159 public static synchronized void dumpCoverageData (File outFile, final boolean stopDataCollection) argument
161 outFile = outFile != null ? outFile
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
H A DISACHist.cc27 FILE *outFile; local
50 outFile = fopen(argv[2], "w");
51 if(outFile == NULL)
153 fprintf(outFile, "%10lu\n", hist[n]);
155 fclose(outFile);
H A DIsac_test.cc64 WebRtc_Word8 outFile[40]; local
113 strcpy(outFile,argv[2]);
121 strcat(outFile,"_");
122 strcat(outFile, argv[4]);
123 strcat(outFile,"_");
124 strcat(outFile, codec);
127 strcat(outFile,"_");
128 strcat(outFile, argv[6]);
131 strcat(outFile,"_");
132 strcat(outFile, "pl
[all...]
/external/llvm/runtime/libprofile/
H A DCommonProfiling.c163 int outFile = getOutFile(); local
167 if( write(outFile, &PTy, sizeof(int)) < 0 ||
168 write(outFile, &NumElements, sizeof(unsigned)) < 0 ||
169 write(outFile, Start, NumElements*sizeof(unsigned)) < 0 ) {
H A DPathProfiling.c56 int outFile = getOutFile(); local
77 arrayHeaderLocation = lseek(outFile, 0, SEEK_CUR);
78 lseek(outFile, sizeof(PathProfileHeader), SEEK_CUR);
84 if (write(outFile, &pte, sizeof(PathProfileTableEntry)) < 0) {
97 arrayCurrentLocation = lseek(outFile, 0, SEEK_CUR);
98 lseek(outFile, arrayHeaderLocation, SEEK_SET);
100 if (write(outFile, &fHeader, sizeof(PathProfileHeader)) < 0) {
106 lseek(outFile, arrayCurrentLocation, SEEK_SET);
117 int outFile = getOutFile(); local
124 if (write(outFile,
222 int outFile = getOutFile(); local
[all...]
/external/skia/tools/
H A Dfiltermain.cpp22 SkDebugf("Usage: filter -i inFile [-o outFile] [--input-dir path] [--output-dir path]\n");
25 SkDebugf(" -o outFile : result of filtering.\n");
43 static int filter_picture(const SkString& inFile, const SkString& outFile) { argument
98 if (!outFile.isEmpty()) {
105 SkFILEWStream outStream(outFile.c_str());
125 SkString inFile, outFile, inDir, outDir; local
159 outFile.set(*argv);
183 sk_tools::make_filepath(&outFile, outDir, inputFilename);
186 filter_picture(inFile, outFile);
190 filter_picture(inFile, outFile);
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DReportProperties.java65 public void setOutFile (final File outFile) argument
67 if ($assert.ENABLED) $assert.ASSERT (outFile != null, "null input: outFile");
69 m_outFile = outFile;
/external/bzip2/
H A Dbzip2recover.c304 FILE* outFile; local
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/instr/
H A DInstrProcessorST.java181 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));
803 static void writeFile (final byte [] data, final File outFile, fina argument
886 FileWriteJob(final File outFile, final byte [] data, final boolean mkdirs) argument
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DImageDiff.cpp317 static bool writeFile(const char* outFile, const unsigned char* data, size_t dataSize) argument
319 FILE* file = fopen(outFile, "wb");
321 fprintf(stderr, "ImageDiff: Unable to create file \"%s\"\n", outFile);
326 fprintf(stderr, "ImageDiff: Unable to write data to file \"%s\"\n", outFile);
333 int diffImages(const char* file1, const char* file2, const char* outFile) argument
355 if (!writeFile(outFile, &pngData.front(), pngData.size()))
/external/yaffs2/yaffs2/utils/
H A Dmkyaffs2image.c76 static int outFile; variable
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);
H A Dmkyaffsimage.c56 static int outFile; variable
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/webrtc/src/modules/audio_processing/aec/
H A Daec_core.h151 FILE *outFile; member in struct:__anon16364
/external/webkit/Tools/android/webkitmerge/
H A Dwebkitmerge.cpp204 const char* outFile)
209 sandboxBase, oldDir, oldFile, oldBase, oldDir, oldFile, newBase, newDir, newFile, outFile);
203 Merge(const char* oldDir, const char* oldFile, const char* newDir, const char* newFile, const char* outFile) argument
/external/webrtc/src/modules/audio_processing/aecm/
H A Daecm_core.h202 FILE *outFile; member in struct:__anon16376
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 385 milliseconds

12