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

  /external/chromium/net/http/
http_byte_range_unittest.cc 11 int64 last_byte_position; member in struct:__anon5044
29 range.set_last_byte_position(tests[i].last_byte_position);
38 int64 last_byte_position; member in struct:__anon5045
61 range.set_last_byte_position(tests[i].last_byte_position);
68 EXPECT_EQ(tests[i].expected_upper_bound, range.last_byte_position());
74 EXPECT_EQ(tests[i].expected_upper_bound, range.last_byte_position());
http_byte_range.h 25 int64 last_byte_position() const { return last_byte_position_; } function in class:net::HttpByteRange
http_util.cc 262 int64 last_byte_position; local
263 if (!base::StringToInt64(last_byte_pos, &last_byte_position))
266 range.set_last_byte_position(last_byte_position);
268 range.set_suffix_length(last_byte_position);
partial_data.cc 142 byte_range_.last_byte_position();
154 byte_range_.suffix_length() : byte_range_.last_byte_position();
360 if (byte_range_.IsValid() && end > byte_range_.last_byte_position())
386 end = byte_range_.last_byte_position();
468 byte_range_.last_byte_position() - current_range_start_ + 1 :
http_response_headers.cc     [all...]
http_response_headers.h 234 // |*last_byte_position| = inclusive position of the last byte of the range
238 int64* last_byte_position,
http_response_headers_unittest.cc 1344 int64 last_byte_position; local
    [all...]
http_util_unittest.cc 667 ranges[j].last_byte_position());
http_cache_unittest.cc 907 int end = static_cast<int>(byte_range.last_byte_position());
    [all...]
  /external/chromium/webkit/glue/media/
buffered_resource_loader.cc 50 int64 last_byte_position)
59 last_byte_position_(last_byte_position),
585 int first_byte_position, last_byte_position, instance_size; local
589 &last_byte_position,
603 // TODO(hclam): I should also check |last_byte_position|, but since
610 int64 last_byte_position) {
614 last_byte_position > kPositionNotSpecified) {
615 if (first_byte_position <= last_byte_position) {
618 last_byte_position);
623 } else if (last_byte_position > kPositionNotSpecified)
    [all...]
buffered_resource_loader.h 53 // |last_byte_position| - Last byte to be loaded,
57 int64 last_byte_position);
190 // |first_byte_position| and |last_byte_position|. Negative numbers other
192 // |last_byte_position|. |first_byte_position| should always be less than or
193 // equal to |last_byte_position| if they are both not |kPositionNotSpecified|.
196 int64 last_byte_position);
buffered_data_source.h 62 int64 first_byte_position, int64 last_byte_position);
buffered_data_source.cc 79 int64 first_byte_position, int64 last_byte_position) {
84 last_byte_position);
  /external/chromium/net/url_request/
url_request_file_job.cc 353 remaining_bytes_ = byte_range_.last_byte_position() -
url_request_unittest.cc 963 const size_t last_byte_position = buffer_size - first_byte_position; local
964 const size_t content_length = last_byte_position - first_byte_position + 1;
966 buffer.get() + last_byte_position + 1);
976 first_byte_position, last_byte_position));
1007 const size_t last_byte_position = buffer_size - 1; local
1008 const size_t content_length = last_byte_position - first_byte_position + 1;
1010 buffer.get() + last_byte_position + 1);
    [all...]

Completed in 282 milliseconds