Home
last modified time | relevance | path

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

/development/samples/Vault/src/com/example/android/vault/
DEncryptedDocument.java215 final File tempFile = new File(mFile.getParentFile(), tempName); in writeMetadataAndContent() local
217 RandomAccessFile f = new RandomAccessFile(tempFile, "rw"); in writeMetadataAndContent()
254 tempFile.renameTo(mFile); in writeMetadataAndContent()
261 tempFile.delete(); in writeMetadataAndContent()
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DContentFragment.java319 final File tempFile = new File(externalCacheDir, "tempfile.jpg"); in shareCurrentPhoto() local
329 FileOutputStream fo = new FileOutputStream(tempFile, false); in shareCurrentPhoto()
355 shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(tempFile)); in shareCurrentPhoto()