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

/frameworks/base/core/java/android/app/backup/
H A DFullBackup.java87 * @param outFile Location within the filesystem to place the data. This must point
92 long size, int type, long mode, long mtime, File outFile) throws IOException {
97 if (outFile != null) outFile.mkdirs();
103 if (outFile != null) {
104 File parent = outFile.getParentFile();
112 out = new FileOutputStream(outFile);
115 Log.e(TAG, "Unable to create/open file " + outFile.getPath(), e);
135 Log.e(TAG, "Unable to write to file " + outFile.getPath(), e);
138 outFile
91 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.c603 fprintf(stderr, "usage: %s commandFile outFile\n", argv[0]);
607 const char* outFile = argv[2]; local
621 FILE *f = fopen(outFile, "w");
/frameworks/base/core/java/android/webkit/
H A DCacheManager.java81 File outFile; field in class:CacheManager.CacheResult
/frameworks/base/core/tests/coretests/src/com/android/server/
H A DMountServiceTests.java115 final File outFile = new File(filesDir, name);
116 return outFile;
119 private void copyRawToFile(int rawResId, File outFile) { argument
127 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
129 assertTrue(FileUtils.copyToFile(is, outFile));
130 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
213 final File outFile = getFilePath("test1.obb");
215 mountObb(sm, R.raw.test1, outFile, OnObbStateChangeListener.MOUNTED);
217 mountObb(sm, R.raw.test1, outFile, OnObbStateChangeListener.ERROR_ALREADY_MOUNTED);
219 final String mountPath = checkMountedPath(sm, outFile);
[all...]
/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.java210 int outFormat, String outFile, boolean videoOnly) {
223 mRecorder.setOutputFile(outFile);
209 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.java256 Uri getInstallablePackage(int fileResId, File outFile) { argument
264 FileUtils.setPermissions(outFile.getPath(),
267 assertTrue(FileUtils.copyToFile(is, outFile));
268 FileUtils.setPermissions(outFile.getPath(),
271 return Uri.fromFile(outFile);
579 File outFile = new File(filesDir, outFileName);
580 Uri packageURI = getInstallablePackage(rawResId, outFile);
1175 File outFile = new File(ip.pkg.mScanPath);
1176 if (outFile != null && outFile
[all...]

Completed in 189 milliseconds