Home | History | Annotate | Download | only in io

Lines Matching defs:out

31   private final ZipOutputStream out;
34 out = new ZipOutputStream(new BufferedOutputStream(Files.newOutputStream(root)));
40 out.putNextEntry(inputFileProvider.getZipEntry(filename));
42 ByteStreams.copy(is, out);
44 out.closeEntry();
51 writeStoredEntry(out, filename, content);
56 out.close();
59 private static void writeStoredEntry(ZipOutputStream out, String filename, byte[] content)
74 out.putNextEntry(result);
75 out.write(content);
76 out.closeEntry();