Home | History | Annotate | Download | only in rezip

Lines Matching defs:out

76         public CountingOutputStream(OutputStream out) {
77 this.mOut = out;
177 * @param out jar output stream to write the alignment file to.
183 JarOutputStream out) throws IOException {
235 out.putNextEntry(alignEntry);
236 out.write(zeroBuffer);
237 out.closeEntry();
238 out.flush();
290 * @param out The output APK stream.
298 JarFile in, JarOutputStream out, CountingOutputStream countOut,
356 addAlignmentFile(offset, timestamp, name, prevName, out);
376 out.putNextEntry(outEntry);
382 out.write(buffer, 0, num);
385 out.closeEntry();
386 out.flush();