Searched refs:writeCounted (Results 1 – 2 of 2) sorted by relevance
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/ |
D | ZipArchiveOutputStream.java | 489 writeCounted(byteArrayOutputStream.toByteArray()); in writeCentralDirectoryInChunks() 494 writeCounted(byteArrayOutputStream.toByteArray()); in writeCentralDirectoryInChunks() 935 private void writeCounted(final byte[] data) throws IOException { in writeCounted() method in ZipArchiveOutputStream 936 streamCompressor.writeCounted(data); in writeCounted() 948 streamCompressor.writeCounted(copyBuffer, 0, length); in copyFromZipInputStream() 1043 writeCounted(localHeader); in writeLocalFileHeader() 1181 writeCounted(DD_SIG); in writeDataDescriptor() 1182 writeCounted(ZipLong.getBytes(ze.getCrc())); in writeDataDescriptor() 1184 writeCounted(ZipLong.getBytes(ze.getCompressedSize())); in writeDataDescriptor() 1185 writeCounted(ZipLong.getBytes(ze.getSize())); in writeDataDescriptor() [all …]
|
D | StreamCompressor.java | 207 writeCounted(b, offset, length); in write() 264 writeCounted(outputBuffer, 0, len); in deflate() 268 public void writeCounted(final byte[] data) throws IOException { in writeCounted() method in StreamCompressor 269 writeCounted(data, 0, data.length); in writeCounted() 272 …public void writeCounted(final byte[] data, final int offset, final int length) throws IOException… in writeCounted() method in StreamCompressor
|