Home
last modified time | relevance | path

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

/packages/apps/WallpaperPicker/src/com/android/gallery3d/common/
DExifOrientation.java51 DataOutputStream tempOut = null; in readRotation() local
74 tempOut = new DataOutputStream(new FileOutputStream(tempFile)); in readRotation()
75 tempOut.writeShort(SOI); in readRotation()
78 tempOut.writeShort(marker); in readRotation()
79 tempOut.writeShort(length); in readRotation()
83 tempOut.write(header); in readRotation()
94 if (tempOut != null) { in readRotation()
96 tempOut.writeShort(SOS); in readRotation()
99 tempOut.writeShort(2); in readRotation()
102 tempOut.writeShort(EOI); in readRotation()
[all …]
/packages/apps/Email/provider_src/com/android/email/mail/store/
DImapFolder.java1060 final OutputStream tempOut = new FileOutputStream(tempFile); in appendMessage() local
1062 final CountingOutputStream out = new CountingOutputStream(tempOut); in appendMessage()