Home | History | Annotate | Download | only in xz

Lines Matching refs:seek

60  * that the decompressor will only need to seek to certain uncompressed
161 * True when <code>seek(long)</code> has been called but the actual
168 * calling <code>seek(long)</code>.
314 in.seek(0);
336 in.seek(pos - DecoderUtil.STREAM_HEADER_SIZE);
366 // Seek to the beginning of the Index.
367 in.seek(pos - streamFooter.backwardSize);
401 // Seek to the beginning of this Stream.
403 in.seek(pos);
671 seek();
678 seek();
772 * very fast. The actual seek is done when <code>read</code> is called
785 public void seek(long pos) throws IOException {
790 throw new XZIOException("Negative seek position: " + pos);
814 // offset of the specified Block, then when doing the actual seek in
815 // seek(), we need to find the Block number based on seekPos.
824 private void seek() throws IOException {
825 // If seek(long) wasn't called, we simply need to get the next Block
827 // then we behave as if seek(long) had been called.
853 // Seek in the underlying stream and create a new Block decoder
864 // Seek to the beginning of the Block.
865 in.seek(curBlockInfo.compressedOffset);
942 * <code>seek()</code>.