HomeSort by relevance Sort by last modified time
    Searched defs:outFile (Results 26 - 50 of 78) sorted by null

12 3 4

  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/audio/dec/mp3/
Exynos_OMX_Mp3dec.c 52 FILE *outFile;
455 outFile = fopen("/data/OutFile.pcm", "w+");
473 fclose(outFile);
598 fwrite(pOutputData->buffer.singlePlaneBuffer.dataBuffer, pOutputData->dataLen, 1, outFile);
    [all...]
  /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));
  /cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java 463 private void recordMedia(long maxFileSize, File outFile) throws Exception {
470 assertTrue(outFile.exists());
474 assertTrue(outFile.length() < 1.1 * maxFileSize);
475 assertTrue(outFile.length() > 0);
  /cts/tests/tests/os/src/android/os/storage/cts/
StorageManagerTest.java 63 private void doMountAndUnmountObbNormal(File outFile) {
64 final String canonPath = mountObb(R.raw.test1, outFile, OnObbStateChangeListener.MOUNTED);
66 mountObb(R.raw.test1, outFile, OnObbStateChangeListener.ERROR_ALREADY_MOUNTED);
73 unmountObb(outFile, OnObbStateChangeListener.UNMOUNTED);
84 private void doAttemptMountNonObb(File outFile) {
85 mountObb(R.raw.test1_nosig, outFile, OnObbStateChangeListener.ERROR_INTERNAL);
88 mStorageManager.isObbMounted(outFile.getPath()));
91 mStorageManager.getMountedObbPath(outFile.getPath()));
102 private void doAttemptMountObbWrongPackage(File outFile) {
103 mountObb(R.raw.test1_wrongpackage, outFile,
    [all...]
  /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/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/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/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/skia/tools/
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/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);
  /external/chromium_org/third_party/opus/src/src/
opus_demo.c 229 char *inFile, *outFile;
517 outFile = argv[argc-1];
518 fout = fopen(outFile, "wb+");
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
aec_core.h 151 FILE *outFile;
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 516 File outFile = new File(basePath, path);
517 String outPath = outFile.getCanonicalPath();
520 onRestoreFile(data, size, outFile, type, mode, mtime);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerBuilder.java     [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 287 Uri getInstallablePackage(int fileResId, File outFile) {
295 FileUtils.setPermissions(outFile.getPath(),
298 assertTrue(FileUtils.copyToFile(is, outFile));
299 FileUtils.setPermissions(outFile.getPath(),
302 return Uri.fromFile(outFile);
696 File outFile = new File(filesDir, outFileName);
697 Uri packageURI = getInstallablePackage(rawResId, outFile);
    [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...]
  /external/skia/tests/
PathOpsSkpClipTest.cpp 355 SkString outFile = make_filepath(0, outDir, pngName);
356 if (!SkImageEncoder::EncodeFile(outFile.c_str(), bitmap,
  /external/webrtc/src/modules/audio_processing/aecm/
aecm_core.h 202 FILE *outFile;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
VideoEditorStressTest.java 126 File outFile = new File(VIDEOEDITOR_OUTPUT);
127 Writer output = new BufferedWriter(new FileWriter(outFile, true));
136 File outFile = new File(VIDEOEDITOR_OUTPUT);
137 Writer output = new BufferedWriter(new FileWriter(outFile, true));
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
AttachmentProviderTests.java 669 File outFile = getAttachmentFile(forAccount, id);
672 FileOutputStream out = new FileOutputStream(outFile);
676 return outFile.getAbsolutePath();
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 140 File outFile = m_settings.getOutFile ();
141 if (outFile == null)
143 outFile = new File ("index".concat (FILE_EXTENSION));
144 m_settings.setOutFile (outFile);
147 final File fullOutFile = Files.newFile (m_settings.getOutDir (), outFile);
327 final File outFile = getItemFile (NESTED_ITEMS_PARENT_DIR, m_reportIDNamespace.getID (getItemKey (item)));
329 out = openOutFile (Files.newFile (m_settings.getOutDir (), outFile), m_settings.getOutEncoding (), true);
444 final File outFile = getItemFile (NESTED_ITEMS_PARENT_DIR, m_reportIDNamespace.getID (getItemKey (item)));
446 out = openOutFile (Files.newFile (m_settings.getOutDir (), outFile), m_settings.getOutEncoding (), true);
619 final File outFile = getItemFile (NESTED_ITEMS_PARENT_DIR, m_reportIDNamespace.getID (getItemKey (item)))
    [all...]

Completed in 1010 milliseconds

12 3 4