Searched defs:ConsumeReadData (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/webrtc/base/
H A Dstream.h129 // must call ConsumeReadData with the number of processed bytes. GetReadData
130 // does not require a matching call to ConsumeReadData if the data is not
131 // processed. Read and ConsumeReadData invalidate the buffer returned by
134 virtual void ConsumeReadData(size_t used) {} function in class:rtc::StreamInterface
268 virtual void ConsumeReadData(size_t used) {
269 stream_->ConsumeReadData(used);
513 // bytes, user has to call ConsumeReadData() to do this.
536 void ConsumeReadData(size_t used) override;
H A Dstream.cc806 void FifoBuffer::ConsumeReadData(size_t size) { function in class:rtc::FifoBuffer

Completed in 3244 milliseconds