Home | History | Annotate | Download | only in dumprendertree2

Lines Matching refs:outputStream

51 import java.io.OutputStream;
94 OutputStream outputStream = null;
99 outputStream = new FileOutputStream(file, append);
100 outputStream.write(bytes);
102 if (outputStream != null) {
103 outputStream.close();
272 public static void closeOutputStream(OutputStream outputStream) {
274 if (outputStream != null) {
275 outputStream.close();