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

  /external/chromium/net/http/
http_byte_range.cc 18 : first_byte_position_(kPositionNotSpecified),
29 return first_byte_position_ != kPositionNotSpecified;
39 return first_byte_position_ >= 0 &&
41 last_byte_position_ >= first_byte_position_);
55 first_byte_position_ = 0;
62 first_byte_position_ = size - std::min(size, suffix_length_);
66 if (first_byte_position_ < size) {
http_byte_range.h 21 int64 first_byte_position() const { return first_byte_position_; }
22 void set_first_byte_position(int64 value) { first_byte_position_ = value; }
41 // |first_byte_position_| and |last_byte_position_| values according to the
50 int64 first_byte_position_; member in class:net::HttpByteRange

Completed in 287 milliseconds