Home
last modified time | relevance | path

Searched refs:tempFile (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Email/src/org/apache/james/mime4j/message/
DTempFileTextBody.java50 private TempFile tempFile = null; field in TempFileTextBody
62 tempFile = tempPath.createTempFile("attachment", ".txt"); in TempFileTextBody()
64 OutputStream out = tempFile.getOutputStream(); in TempFileTextBody()
107 return new InputStreamReader(tempFile.getInputStream(), javaCharset); in getReader()
115 IOUtils.copy(tempFile.getInputStream(), out); in writeTo()
DTempFileBinaryBody.java46 private TempFile tempFile = null; field in TempFileBinaryBody
57 tempFile = tempPath.createTempFile("attachment", ".bin"); in TempFileBinaryBody()
59 OutputStream out = tempFile.getOutputStream(); in TempFileBinaryBody()
82 return tempFile.getInputStream(); in getInputStream()
DMemoryTextBody.java51 private byte[] tempFile = null; field in MemoryTextBody
67 tempFile = out.toByteArray(); in MemoryTextBody()
108 return new InputStreamReader(new ByteArrayInputStream(tempFile), javaCharset); in getReader()
116 IOUtils.copy(new ByteArrayInputStream(tempFile), out); in writeTo()
DMemoryBinaryBody.java47 private byte[] tempFile = null; field in MemoryBinaryBody
62 tempFile = out.toByteArray(); in MemoryBinaryBody()
83 return new ByteArrayInputStream(tempFile); in getInputStream()
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DDownloadCache.java316 File tempFile = null; in run() local
319 tempFile = File.createTempFile("cache", ".tmp", mRoot); in run()
322 boolean downloaded = DownloadUtils.requestDownload(jc, url, tempFile); in run()
324 if (downloaded) return tempFile; in run()
330 if (tempFile != null) tempFile.delete(); in run()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DExpandableBinaryDictionary.java338 final File tempFile = new File(mContext.getFilesDir(), tempFileName); in generateBinaryDictionary() local
341 out = new FileOutputStream(tempFile); in generateBinaryDictionary()
345 tempFile.renameTo(file); in generateBinaryDictionary()