Lines Matching full:xz

10 package org.tukaani.xz;
16 import org.tukaani.xz.common.DecoderUtil;
19 * Decompresses a .xz file in streamed mode (no seeking).
21 * Use this to decompress regular standalone .xz files. This reads from
23 * This supports decompressing concatenated .xz files.
27 * Getting an input stream to decompress a .xz file:
29 * InputStream infile = new FileInputStream("foo.xz");
46 * InputStream infile = new FileInputStream("foo.xz");
76 * Creates a new XZ decompressor without a memory usage limit.
78 * This constructor reads and parses the XZ Stream Header (12 bytes)
82 * @param in input stream from which XZ-compressed
86 * input is not in the XZ format
89 * XZ header CRC32 doesn't match
92 * XZ header is valid but specifies options
106 * Creates a new XZ decompressor without a memory usage limit.
111 * @param in input stream from which XZ-compressed
117 * input is not in the XZ format
120 * XZ header CRC32 doesn't match
123 * XZ header is valid but specifies options
140 * Creates a new XZ decompressor with an optional memory usage limit.
145 * @param in input stream from which XZ-compressed
153 * input is not in the XZ format
156 * XZ header CRC32 doesn't match
159 * XZ header is valid but specifies options
173 * Creates a new XZ decompressor with an optional memory usage limit.
179 * @param in input stream from which XZ-compressed
189 * input is not in the XZ format
192 * XZ header CRC32 doesn't match
195 * XZ header is valid but specifies options
212 * Creates a new XZ decompressor with an optional memory usage limit
221 * <li>Trying to recover data from a corrupt .xz file.</li>
233 * @param in input stream from which XZ-compressed
245 * input is not in the XZ format
248 * XZ header CRC32 doesn't match
251 * XZ header is valid but specifies options
268 * Creates a new XZ decompressor with an optional memory usage limit
274 * @param in input stream from which XZ-compressed
288 * input is not in the XZ format
291 * XZ header CRC32 doesn't match
294 * XZ header is valid but specifies options
442 // and initialize the XZ decoder. in prepareNextStream()
449 // Since this isn't the first .xz Stream, it is more in prepareNextStream()
452 "Garbage after a valid XZ Stream"); in prepareNextStream()