Home
last modified time | relevance | path

Searched refs:ZipArchiveEntryRequest (Results 1 – 7 of 7) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DZipArchiveEntryRequest.java29 public class ZipArchiveEntryRequest { class
40 …private ZipArchiveEntryRequest(final ZipArchiveEntry zipArchiveEntry, final InputStreamSupplier pa… in ZipArchiveEntryRequest() method in ZipArchiveEntryRequest
53 …public static ZipArchiveEntryRequest createZipArchiveEntryRequest(final ZipArchiveEntry zipArchive… in createZipArchiveEntryRequest()
54 return new ZipArchiveEntryRequest(zipArchiveEntry, payloadSupplier); in createZipArchiveEntryRequest()
DScatterZipOutputStream.java54 final ZipArchiveEntryRequest zipArchiveEntryRequest;
59 …public CompressedEntry(final ZipArchiveEntryRequest zipArchiveEntryRequest, final long crc, final … in CompressedEntry()
94 …public void addArchiveEntry(final ZipArchiveEntryRequest zipArchiveEntryRequest) throws IOExceptio… in addArchiveEntry()
DParallelScatterZipCreator.java39 import static org.apache.commons.compress.archivers.zip.ZipArchiveEntryRequest.createZipArchiveEntr…
187 …final ZipArchiveEntryRequest zipArchiveEntryRequest = createZipArchiveEntryRequest(zipArchiveEntry… in createCallable()
DZipArchiveEntryRequestSupplier.java35 ZipArchiveEntryRequest get(); in get()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/
DParallelScatterZipCreatorTest.java127 public ZipArchiveEntryRequest get() { in writeEntries()
128 return ZipArchiveEntryRequest.createZipArchiveEntryRequest(za, iss); in writeEntries()
154 public ZipArchiveEntryRequest get() { in writeEntriesAsCallable()
155 return ZipArchiveEntryRequest.createZipArchiveEntryRequest(za, iss); in writeEntriesAsCallable()
DScatterSample.java36 …dirs.addArchiveEntry(ZipArchiveEntryRequest.createZipArchiveEntryRequest(zipArchiveEntry, streamSu… in addEntry()
DScatterZipOutputStreamTest.java31 import static org.apache.commons.compress.archivers.zip.ZipArchiveEntryRequest.createZipArchiveEntr…