Home
last modified time | relevance | path

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

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DScatterZipOutputStream.java54 final ZipArchiveEntryRequest zipArchiveEntryRequest; field in ScatterZipOutputStream.CompressedEntry
59 …public CompressedEntry(final ZipArchiveEntryRequest zipArchiveEntryRequest, final long crc, final … in CompressedEntry() argument
60 this.zipArchiveEntryRequest = zipArchiveEntryRequest; in CompressedEntry()
73 final ZipArchiveEntry entry = zipArchiveEntryRequest.getZipArchiveEntry(); in transferToArchiveEntry()
77 entry.setMethod(zipArchiveEntryRequest.getMethod()); in transferToArchiveEntry()
94 …public void addArchiveEntry(final ZipArchiveEntryRequest zipArchiveEntryRequest) throws IOExceptio… in addArchiveEntry() argument
95 try (final InputStream payloadStream = zipArchiveEntryRequest.getPayloadStream()) { in addArchiveEntry()
96 streamCompressor.deflate(payloadStream, zipArchiveEntryRequest.getMethod()); in addArchiveEntry()
98 items.add(new CompressedEntry(zipArchiveEntryRequest, streamCompressor.getCrc32(), in addArchiveEntry()
DParallelScatterZipCreator.java187 …final ZipArchiveEntryRequest zipArchiveEntryRequest = createZipArchiveEntryRequest(zipArchiveEntry… in createCallable() local
191 tlScatterStreams.get().addArchiveEntry(zipArchiveEntryRequest); in createCallable()