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

/frameworks/base/core/java/android/app/backup/
H A DFullBackup.java91 * @param outFile Location within the filesystem to place the data. This must point
96 long size, int type, long mode, long mtime, File outFile) throws IOException {
101 if (outFile != null) outFile.mkdirs();
107 if (outFile != null) {
108 File parent = outFile.getParentFile();
114 out = new FileOutputStream(outFile);
117 Log.e(TAG, "Unable to create/open file " + outFile.getPath(), e);
137 Log.e(TAG, "Unable to write to file " + outFile.getPath(), e);
140 outFile
95 restoreFile(ParcelFileDescriptor data, long size, int type, long mode, long mtime, File outFile) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
H A DMediaRecorderTest.java74 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);
73 recordVideo(int frameRate, int width, int height, int videoFormat, int outFormat, String outFile, boolean videoOnly) argument
174 invalidRecordSetting(int frameRate, int width, int height, int videoFormat, int outFormat, String outFile, boolean videoOnly) argument
/frameworks/rs/
H A Drsg_generator.c632 fprintf(stderr, "usage: %s commandFile outFile\n", argv[0]);
636 const char* outFile = argv[2]; local
650 FILE *f = fopen(outFile, "w");
/frameworks/base/core/java/android/webkit/
H A DCacheManager.java74 File outFile; field in class:CacheManager.CacheResult
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMountServiceTests.java117 final File outFile = new File(filesDir, name);
118 return outFile;
121 private void copyRawToFile(int rawResId, File outFile) { argument
129 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
131 assertTrue(FileUtils.copyToFile(is, outFile));
132 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
215 final File outFile = getFilePath("test1.obb");
217 mountObb(sm, R.raw.test1, outFile, OnObbStateChangeListener.MOUNTED);
219 mountObb(sm, R.raw.test1, outFile, OnObbStateChangeListener.ERROR_ALREADY_MOUNTED);
221 final String mountPath = checkMountedPath(sm, outFile);
[all...]
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp53 std::string outFile; variable
103 outFile = std::string(inFile.begin(), inFile.end() - 3) + ".ll";
106 outFile = inFile + ".ll";
338 new llvm::tool_output_file(outFile.c_str(), errmsg,
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageManagerBaseTest.java225 * @param outFile A File representing the file we want to copy the OBB to
228 private void copyRawToFile(int rawResId, File outFile) throws NotFoundException { argument
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
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DMediaPlayerPerformance.java223 int outFormat, String outFile, boolean videoOnly) {
236 mRecorder.setOutputFile(outFile);
222 stressVideoRecord(int frameRate, int width, int height, int videoFormat, int outFormat, String outFile, boolean videoOnly) argument
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java287 Uri getInstallablePackage(int fileResId, File outFile) { argument
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);
1345 File outFile = new File(ip.pkg.mScanPath);
1346 if (outFile != null && outFile
[all...]

Completed in 415 milliseconds