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

1 2

  /external/chromium_org/net/http/
http_byte_range_unittest.cc 11 int64 last_byte_position; member in struct:__anon13908
29 range.set_last_byte_position(tests[i].last_byte_position);
38 int64 last_byte_position; member in struct:__anon13909
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 24 int64 last_byte_position);
33 int64 last_byte_position() const { return last_byte_position_; } function in class:net::HttpByteRange
http_byte_range.cc 29 int64 last_byte_position) {
32 range.set_last_byte_position(last_byte_position);
82 first_byte_position(), last_byte_position());
partial_data.cc 131 byte_range_.last_byte_position();
143 byte_range_.suffix_length() : byte_range_.last_byte_position();
368 if (byte_range_.IsValid() && end > byte_range_.last_byte_position())
464 byte_range_.last_byte_position() - current_range_start_ + 1 :
http_response_headers.cc 387 int64 end = byte_range.last_byte_position();
    [all...]
http_util.cc 258 int64 last_byte_position; local
259 if (!base::StringToInt64(last_byte_pos, &last_byte_position))
262 range.set_last_byte_position(last_byte_position);
264 range.set_suffix_length(last_byte_position);
http_response_headers.h 257 // |*last_byte_position| = inclusive position of the last byte of the range
261 int64* last_byte_position,
http_response_headers_unittest.cc 1330 int64 last_byte_position; local
    [all...]
  /external/chromium_org/net/url_request/
url_request_simple_job.cc 49 int remaining = byte_range_.last_byte_position() - data_offset_ + 1;
88 int remaining_bytes = byte_range_.last_byte_position() -
url_request_file_job.cc 263 remaining_bytes_ = byte_range_.last_byte_position() -
  /external/chromium_org/android_webview/browser/net/
input_stream_reader.cc 68 size = byte_range->last_byte_position() -
  /external/chromium_org/media/blink/
buffered_resource_loader.cc 101 int64 last_byte_position,
115 last_byte_position_(last_byte_position),
697 int64* last_byte_position, int64* instance_size) {
714 last_byte_position)) {
726 if (*last_byte_position < *first_byte_position ||
728 *last_byte_position >= *instance_size)) {
737 int64 first_byte_position, last_byte_position, instance_size; local
739 &first_byte_position, &last_byte_position,
753 // TODO(hclam): I should also check |last_byte_position|, but since
buffered_resource_loader.h 77 // |last_byte_position| - Last byte to be loaded,
86 int64 last_byte_position,
200 int64* last_byte_position, int64* instance_size);
buffered_data_source.h 124 int64 first_byte_position, int64 last_byte_position);
buffered_data_source.cc 114 int64 first_byte_position, int64 last_byte_position) {
124 last_byte_position,
buffered_data_source_unittest.cc 68 int64 last_byte_position) {
73 last_byte_position);
  /external/chromium_org/content/browser/fileapi/
file_system_url_request_job_unittest.cc 276 const size_t last_byte_position = buffer_size - first_byte_position; local
278 buffer.get() + last_byte_position + 1);
284 first_byte_position, last_byte_position).GetHeaderValue());
  /external/chromium_org/content/browser/streams/
stream_url_request_job.cc 163 max_range_ = ranges[0].last_byte_position() + 1;
  /external/chromium_org/storage/browser/blob/
blob_url_request_job.cc 231 byte_range_.last_byte_position() - byte_range_.first_byte_position() + 1);
525 byte_range_.first_byte_position(), byte_range_.last_byte_position()));
  /external/chromium_org/content/browser/service_worker/
service_worker_read_from_cache_job.cc 177 int length = static_cast<int>(range_requested_.last_byte_position() -
  /external/chromium_org/storage/browser/fileapi/
file_system_url_request_job.cc 215 remaining_bytes_ = byte_range_.last_byte_position() -
  /external/chromium_org/chrome/browser/chromeos/fileapi/
external_file_url_request_job.cc 262 byte_range_.last_byte_position() + 1 - byte_range_.first_byte_position();
  /external/chromium_org/content/browser/appcache/
appcache_url_request_job.cc 320 int length = static_cast<int>(range_requested_.last_byte_position() -
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_file_stream_reader.cc 53 *length = range.last_byte_position() - range.first_byte_position() + 1;
  /external/chromium_org/google_apis/drive/
base_requests.cc 552 end_position_received = ranges[0].last_byte_position() + 1;

Completed in 655 milliseconds

1 2