HomeSort by relevance Sort by last modified time
    Searched refs:first_byte_position_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/net/http/
http_byte_range.cc 21 : first_byte_position_(kPositionNotSpecified),
55 return first_byte_position_ != kPositionNotSpecified;
65 return (first_byte_position_ >= 0 &&
67 last_byte_position_ >= first_byte_position_));
96 first_byte_position_ = 0;
103 first_byte_position_ = size - std::min(size, suffix_length_);
107 if (first_byte_position_ < size) {
http_byte_range.h 30 int64 first_byte_position() const { return first_byte_position_; }
31 void set_first_byte_position(int64 value) { first_byte_position_ = value; }
54 // |first_byte_position_| and |last_byte_position_| values according to the
63 int64 first_byte_position_; member in class:net::HttpByteRange
  /external/chromium_org/content/renderer/media/
buffered_resource_loader.cc 115 first_byte_position_(first_byte_position),
155 if (first_byte_position_ != kPositionNotSpecified) {
157 // equal to |first_byte_position_|.
158 offset_ = first_byte_position_;
169 first_byte_position_, last_byte_position_).GetHeaderValue()));
407 } else if (ok_response && first_byte_position_ == 0 &&
429 if (first_byte_position_ == kPositionNotSpecified)
432 instance_size_ = content_length_ + first_byte_position_;
687 return first_byte_position_;
744 if (first_byte_position_ != kPositionNotSpecified &
    [all...]
buffered_resource_loader.h 278 const int64 first_byte_position_; member in class:content::BufferedResourceLoader

Completed in 184 milliseconds