/external/chromium_org/media/filters/ |
blocking_url_protocol.cc | 21 read_position_(0) { 38 if (data_source_->GetSize(&file_size) && read_position_ >= file_size) 44 data_source_->Read(read_position_, size, data, base::Bind( 59 read_position_ += last_read_bytes_; 64 *position_out = read_position_; 75 read_position_ = position;
|
blocking_url_protocol.h | 56 int64 read_position_; member in class:media::BlockingUrlProtocol
|
/external/chromium_org/content/browser/appcache/ |
appcache_response.cc | 144 read_position_(0), 202 if (read_position_ + buffer_len_ > range_length_) { 204 DCHECK(range_length_ >= read_position_); 205 buffer_len_ = range_length_ - read_position_; 208 range_offset_ + read_position_, 214 DCHECK(!IsReadPending() && !read_position_); 239 read_position_ += result;
|
appcache_response.h | 188 int read_position_; member in class:content::AppCacheResponseReader
|
/external/chromium_org/third_party/webrtc/base/ |
stream.cc | 902 data_length_(0), read_position_(0), owner_(Thread::Current()) { 908 data_length_(0), read_position_(0), owner_(owner) { 930 const size_t tail_copy = _min(copy, buffer_length_ - read_position_); 931 memcpy(buffer, &buffer_[read_position_], tail_copy); 934 read_position_ = 0; 966 read_position_ = (read_position_ + copy) % buffer_length_; 1010 *size = (read_position_ + data_length_ <= buffer_length_) ? 1011 data_length_ : buffer_length_ - read_position_; 1012 return &buffer_[read_position_]; [all...] |
stream.h | 681 size_t read_position_; // offset to the readable data member in class:rtc::FifoBuffer
|
/external/chromium_org/media/blink/ |
buffered_resource_loader.cc | 120 read_position_(0), 231 read_position_ = position; 248 instance_size_ <= read_position_) { 254 // Make sure |offset_| and |read_position_| does not differ by a large 256 if (read_position_ > offset_ + kint32max || 257 read_position_ < offset_ + kint32min) { 270 first_offset_ = read_position_ - offset_; 763 read_position_ = 0;
|
buffered_resource_loader.h | 295 int64 read_position_; member in class:media::BufferedResourceLoader
|