Home | History | Annotate | Download | only in cpio

Lines Matching refs:cpio

19 package org.apache.commons.compress.archivers.cpio;
36 * CpioArchiveOutputStream is a stream for writing CPIO streams. All formats of
37 * CPIO are supported (old ASCII, old binary, new portable format and the new
41 * it with the necessary values and put it into the CPIO stream. Afterwards
42 * write the contents of the file into the CPIO stream. Either close the stream
43 * by calling finish() or put a next entry into the cpio stream.</p>
47 * new FileOutputStream(new File("test.cpio")));
59 * <p>Note: This implementation should be compatible to cpio 2.5</p>
102 * Construct the cpio output stream with a specified format, a
107 * The cpio stream
116 * Construct the cpio output stream with a specified format using
120 * The cpio stream
134 * Construct the cpio output stream with a specified format using
138 * The cpio stream
169 * Construct the cpio output stream. The format for this CPIO stream is the
173 * The cpio stream
180 * Construct the cpio output stream. The format for this CPIO stream is the
184 * The cpio stream
207 * Begins writing a new CPIO file entry and positions the stream to the
214 * the CPIO cpioEntry to be written
216 * if an I/O error has occurred or if a CPIO file error has
407 * Writes an array of bytes to the current CPIO entry data. This method will
417 * if an I/O error has occurred or if a CPIO file error has
431 throw new IOException("no current CPIO entry");
448 * Finishes writing the contents of the CPIO output stream without closing
453 * if an I/O exception has occurred or if a CPIO file error has
481 * Closes the CPIO output stream as well as the stream being filtered.
484 * if an I/O error has occurred or if a CPIO file error has