Home
last modified time | relevance | path

Searched refs:outFile (Results 1 – 8 of 8) sorted by relevance

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarDebugActivity.java98 File outFile = new File(Environment.getExternalStorageDirectory(), OUT_FILE); in cleanup() local
99 outFile.delete(); in cleanup()
118 File outFile = new File(path, OUT_FILE); in doInBackground() local
119 outFile.delete(); in doInBackground()
120 Log.i(TAG, "Outfile=" + outFile.getAbsolutePath()); in doInBackground()
125 os = new ZipOutputStream(new FileOutputStream(outFile)); in doInBackground()
148 outFile.toString() in doInBackground()
152 return outFile; in doInBackground()
175 protected void onPostExecute(File outFile) { in onPostExecute() argument
176 if (outFile != null) { in onPostExecute()
[all …]
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DDicttool.java61 protected static OutputStream getFileOutputStream(final File outFile) in getFileOutputStream() argument
63 return new BufferedOutputStream(new FileOutputStream(outFile)); in getFileOutputStream()
/packages/apps/Camera2/tests_camera/src/com/android/camera/stress/
DShotToShotLatency.java124 File outFile = new File(CAMERA_TEST_OUTPUT_FILE); in testShotToShotLatency() local
127 output = new BufferedWriter(new FileWriter(outFile, true)); in testShotToShotLatency()
/packages/apps/Camera2/tests/src/com/android/camera/stress/
DShotToShotLatency.java123 File outFile = new File(CAMERA_TEST_OUTPUT_FILE); in testShotToShotLatency() local
126 output = new BufferedWriter(new FileWriter(outFile, true)); in testShotToShotLatency()
/packages/apps/Camera/tests/src/com/android/camera/stress/
DShotToShotLatency.java124 File outFile = new File(CAMERA_TEST_OUTPUT_FILE); in testShotToShotLatency() local
127 output = new BufferedWriter(new FileWriter(outFile, true)); in testShotToShotLatency()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
DDataExporter.java57 final File outFile = getOutputFile(context, fileName); in exportData() local
65 final ZipOutputStream os = new ZipOutputStream(new FileOutputStream(outFile)); in exportData()
/packages/apps/Email/tests/src/com/android/email/provider/
DAttachmentProviderTests.java660 File outFile = getAttachmentFile(forAccount, id); in createAttachmentFile() local
663 FileOutputStream out = new FileOutputStream(outFile); in createAttachmentFile()
667 return outFile.getAbsolutePath(); in createAttachmentFile()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncher.java5141 File outFile = null; in dumpLogsToLocalData() local
5143 outFile = new File(getFilesDir(), FILENAME); in dumpLogsToLocalData()
5144 outFile.createNewFile(); in dumpLogsToLocalData()
5145 fos = new FileOutputStream(outFile); in dumpLogsToLocalData()