HomeSort by relevance Sort by last modified time
    Searched refs:verifyCheck (Results 1 - 4 of 4) sorted by null

  /external/xz-java/src/org/tukaani/xz/
XZInputStream.java 69 private final boolean verifyCheck;
216 * that this takes also the <code>verifyCheck</code> argument.
229 * <code>verifyCheck</code> only affects the integrity check of
240 * @param verifyCheck if <code>true</code>, the integrity checks
262 public XZInputStream(InputStream in, int memoryLimit, boolean verifyCheck)
264 this(in, memoryLimit, verifyCheck, ArrayCache.getDefaultCache());
281 * @param verifyCheck if <code>true</code>, the integrity checks
305 public XZInputStream(InputStream in, int memoryLimit, boolean verifyCheck,
310 this.verifyCheck = verifyCheck;
    [all...]
SingleXZInputStream.java 48 private final boolean verifyCheck;
213 * except that this also takes the <code>verifyCheck</code> argument.
226 * <code>verifyCheck</code> only affects the integrity check of
237 * @param verifyCheck if <code>true</code>, the integrity checks
260 boolean verifyCheck) throws IOException {
261 this(in, memoryLimit, verifyCheck, ArrayCache.getDefaultCache());
280 * @param verifyCheck if <code>true</code>, the integrity checks
305 boolean verifyCheck, ArrayCache arrayCache)
307 this(in, memoryLimit, verifyCheck, readStreamHeader(in), arrayCache);
310 SingleXZInputStream(InputStream in, int memoryLimit, boolean verifyCheck,
    [all...]
BlockInputStream.java 25 private final boolean verifyCheck;
37 Check check, boolean verifyCheck,
44 this.verifyCheck = verifyCheck;
214 if (verifyCheck)
266 // Validate the integrity check if verifyCheck is true.
269 if (verifyCheck && !Arrays.equals(check.finish(), storedCheck))
SeekableXZInputStream.java 149 private final boolean verifyCheck;
356 * <code>verifyCheck</code> only affects the integrity check of
367 * @param verifyCheck if <code>true</code>, the integrity checks
396 boolean verifyCheck)
398 this(in, memoryLimit, verifyCheck, ArrayCache.getDefaultCache());
417 * @param verifyCheck if <code>true</code>, the integrity checks
448 boolean verifyCheck, ArrayCache arrayCache)
451 this.verifyCheck = verifyCheck;
    [all...]

Completed in 443 milliseconds