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

1 2 3 4 5 6 7 8 9

  /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...]
file_interface.h 31 // file. Return whether the seek succeeded.
32 virtual bool Seek(off_t pos) = 0;
file.h 25 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 46 HRESULT SeekToPhys() { return _stream->Seek(_physPos, STREAM_SEEK_SET, NULL); }
61 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
63 HRESULT SeekToStart() { return Seek(0, STREAM_SEEK_SET, NULL); }
82 HRESULT SeekToPhys() { return Stream->Seek(_physPos, STREAM_SEEK_SET, NULL); }
100 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
117 HRESULT SeekToPhys() { return Stream->Seek(_phyPos, STREAM_SEEK_SET, NULL); }
125 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
177 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
179 HRESULT SeekToStart() { return Stream->Seek(Offset, STREAM_SEEK_SET, NULL); }
197 HRESULT SeekToPhys() { return _stream->Seek(_physPos, STREAM_SEEK_SET, NULL); }
    [all...]
OffsetStream.h 22 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
LockedStream.cpp 11 RINOK(_stream->Seek(startPos, STREAM_SEEK_SET, NULL));
  /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) {
error_delaying_output_stream.h 51 off_t Seek(off_t offset, Whence whence) OVERRIDE {
63 LOG(FATAL) << "Unsupported seek type: " << whence;
67 off_t actual_offset = output_->Seek(offset, whence);
69 PLOG(ERROR) << "Failed to seek in " << GetLocation() << ". Offset=" << offset
  /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/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/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);
InStreamWithCRC.cpp 39 STDMETHODIMP CInStreamWithCRC::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
45 return _stream->Seek(offset, seekOrigin, newPosition);
  /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) {
  /frameworks/compile/libbcc/bcinfo/Wrap/
in_memory_wrapper_input.cpp 53 bool InMemoryWrapperInput::Seek(uint32_t pos) {

Completed in 429 milliseconds

1 2 3 4 5 6 7 8 9