HomeSort by relevance Sort by last modified time
    Searched refs:Seek (Results 1 - 25 of 483) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bsdiff/
extents_file_unittest.cc 29 MOCK_METHOD1(Seek, bool(off_t));
83 // Seek to the beginning of the file.
85 // Seek to the middle of a extent.
88 // Seek to the extent boundary.
93 // We use a failing Read() call to trigger the actual seek call to the
95 EXPECT_CALL(*mock_file_, Seek(offset_pair.second)).WillOnce(Return(true));
98 EXPECT_TRUE(file.Seek(offset_pair.first));
104 EXPECT_TRUE(file.Seek(12));
105 EXPECT_FALSE(file.Seek(13));
107 EXPECT_FALSE(file.Seek(-1))
    [all...]
sink_file.cc 21 bool SinkFile::Seek(off_t pos) {
buffer_file.h 19 // to |file| at once upon closing. Read and Seek are not supported.
29 bool Seek(off_t pos) override;
  /external/lzma/CPP/7zip/Common/
OffsetStream.cpp 13 return _stream->Seek(offset, STREAM_SEEK_SET, NULL);
21 STDMETHODIMP COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
30 HRESULT result = _stream->Seek(offset, seekOrigin, &absoluteNewPosition);
LimitedStreams.h 47 HRESULT SeekToPhys() { return _stream->Seek(_physPos, STREAM_SEEK_SET, NULL); }
62 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
64 HRESULT SeekToStart() { return Seek(0, STREAM_SEEK_SET, NULL); }
83 HRESULT SeekToPhys() { return Stream->Seek(_physPos, STREAM_SEEK_SET, NULL); }
101 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
118 HRESULT SeekToPhys() { return Stream->Seek(_phyPos, STREAM_SEEK_SET, NULL); }
126 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
178 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
180 HRESULT SeekToStart() { return Stream->Seek(Offset, STREAM_SEEK_SET, NULL); }
198 HRESULT SeekToPhys() { return _stream->Seek(_physPos, STREAM_SEEK_SET, NULL); }
    [all...]
OffsetStream.h 22 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
  /art/compiler/linker/
file_output_stream.h 34 off_t Seek(off_t offset, Whence whence) OVERRIDE;
buffered_output_stream.cc 63 off_t BufferedOutputStream::Seek(off_t offset, Whence whence) {
67 return out_->Seek(offset, whence);
file_output_stream.cc 32 off_t FileOutputStream::Seek(off_t offset, Whence whence) {
buffered_output_stream.h 36 off_t Seek(off_t offset, Whence whence) OVERRIDE;
output_stream.h 46 virtual off_t Seek(off_t offset, Whence whence) = 0;
52 * Seek(). In that case, Flush() shall report any pending error.
vector_output_stream.cc 26 off_t VectorOutputStream::Seek(off_t offset, Whence whence) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IIntStream.cs 82 /// <see cref="IIntStream.Release"/> and <see cref="IIntStream.Seek"/>.
98 /// It's like Seek(last marker's input position).
107 /// the backward seek.
118 /// normally used to seek ahead in the input stream.
122 /// will use seek to move backwards such as when backtracking.
137 /// The index is 0..n-1. A seek to position i means that LA(1) will return
141 void Seek(int index);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IIntStream.cs 80 * essentially calling release() and seek(). If there are markers
96 * the marker off. It's like seek(last marker's input position).
105 * rewind() except it releases resources without the backward seek.
115 * normally used to seek ahead in the input stream. No buffering is
116 * required to do this unless you know your stream will use seek to
132 * The index is 0..n-1. A seek to position i means that LA(1) will
137 void Seek( int index );
  /external/bsdiff/include/bsdiff/
file_interface.h 31 // file. Return whether the seek succeeded.
32 virtual bool Seek(off_t pos) = 0;
  /external/lzma/CPP/Common/
C_FileIO.cpp 38 off_t curPos = Seek(0, SEEK_CUR);
39 off_t lengthTemp = Seek(0, SEEK_END);
40 Seek(curPos, SEEK_SET);
45 off_t CFileBase::Seek(off_t distanceToMove, int moveMethod) const
  /frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
file_wrapper_input.h 42 virtual bool Seek(uint32_t pos);
in_memory_wrapper_input.h 42 virtual bool Seek(uint32_t pos);
wrapper_input.h 44 virtual bool Seek(uint32_t pos) = 0;
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.h 41 RINOK(s.Stream->Seek(0, STREAM_SEEK_CUR, &s.LocalPos));
52 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
85 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
  /external/ltp/testcases/kernel/io/disktest/
io.h 56 OFF_T Seek(fd_t, OFF_T);
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
input_audio_file.h 38 // indicated number of samples. Just like Read(), Seek() starts over at the
41 virtual bool Seek(int samples);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
LookaheadStream.cs 170 Seek(marker);
175 Seek(_lastMarker);
179 * Seek to a 0-indexed position within data buffer. Can't handle
180 * case where you seek beyond end of existing buffer. Normally used
181 * to seek backwards in the buffer. Does not force loading of nodes.
186 public virtual void Seek(int index) {
  /prebuilts/go/darwin-x86/src/cmd/internal/bio/
buf.go 45 func (r *Reader) Seek(offset int64, whence int) int64 {
49 off, err := r.f.Seek(offset, whence)
57 func (w *Writer) Seek(offset int64, whence int) int64 {
61 off, err := w.f.Seek(offset, whence)
69 off, err := r.f.Seek(0, 1)
81 off, err := w.f.Seek(0, 1)
  /prebuilts/go/linux-x86/src/cmd/internal/bio/
buf.go 45 func (r *Reader) Seek(offset int64, whence int) int64 {
49 off, err := r.f.Seek(offset, whence)
57 func (w *Writer) Seek(offset int64, whence int) int64 {
61 off, err := w.f.Seek(offset, whence)
69 off, err := r.f.Seek(0, 1)
81 off, err := w.f.Seek(0, 1)

Completed in 371 milliseconds

1 2 3 4 5 6 7 8 91011>>