Lines Matching full:xz

10 package org.tukaani.xz;
16 import org.tukaani.xz.common.DecoderUtil;
17 import org.tukaani.xz.common.StreamFlags;
18 import org.tukaani.xz.index.IndexHash;
19 import org.tukaani.xz.check.Check;
22 * Decompresses exactly one XZ Stream in streamed mode (no seeking).
23 * The decompression stops after the first XZ Stream has been decompressed,
25 * after the end of the XZ Stream. This can be useful when XZ data has
29 * standalone .xz files. For that purpose, use <code>XZInputStream</code>.
33 * If you are decompressing complete XZ streams and your application knows
67 * Creates a new XZ decompressor that decompresses exactly one
68 * XZ Stream from <code>in</code> without a memory usage limit.
70 * This constructor reads and parses the XZ Stream Header (12 bytes)
74 * @param in input stream from which XZ-compressed
78 * input is not in the XZ format
81 * XZ header CRC32 doesn't match
84 * XZ header is valid but specifies options
98 * Creates a new XZ decompressor that decompresses exactly one
99 * XZ Stream from <code>in</code> without a memory usage limit.
104 * @param in input stream from which XZ-compressed
110 * input is not in the XZ format
113 * XZ header CRC32 doesn't match
116 * XZ header is valid but specifies options
133 * Creates a new XZ decompressor that decompresses exactly one
134 * XZ Stream from <code>in</code> with an optional memory usage limit.
139 * @param in input stream from which XZ-compressed
147 * input is not in the XZ format
150 * XZ header CRC32 doesn't match
153 * XZ header is valid but specifies options
168 * Creates a new XZ decompressor that decompresses exactly one
169 * XZ Stream from <code>in</code> with an optional memory usage limit.
175 * @param in input stream from which XZ-compressed
185 * input is not in the XZ format
188 * XZ header CRC32 doesn't match
191 * XZ header is valid but specifies options
208 * Creates a new XZ decompressor that decompresses exactly one
209 * XZ Stream from <code>in</code> with an optional memory usage limit
218 * <li>Trying to recover data from a corrupt .xz file.</li>
230 * @param in input stream from which XZ-compressed
242 * input is not in the XZ format
245 * XZ header CRC32 doesn't match
248 * XZ header is valid but specifies options
265 * Creates a new XZ decompressor that decompresses exactly one
266 * XZ Stream from <code>in</code> with an optional memory usage limit
273 * @param in input stream from which XZ-compressed
287 * input is not in the XZ format
290 * XZ header CRC32 doesn't match
293 * XZ header is valid but specifies options
322 * Gets the ID of the integrity check used in this XZ Stream.
324 * @return the Check ID specified in the XZ Stream Header
331 * Gets the name of the integrity check used in this XZ Stream.
333 * @return the name of the check specified in the XZ Stream Header
461 "XZ Stream Footer does not match Stream Header"); in validateStreamFooter()