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

1 2

  /external/chromium_org/net/http/
http_byte_range.cc 28 HttpByteRange HttpByteRange::Bounded(int64 first_byte_position,
31 range.set_first_byte_position(first_byte_position);
37 HttpByteRange HttpByteRange::RightUnbounded(int64 first_byte_position) {
39 range.set_first_byte_position(first_byte_position);
79 return base::StringPrintf("bytes=%" PRId64 "-", first_byte_position());
82 first_byte_position(), last_byte_position());
http_byte_range.h 23 static HttpByteRange Bounded(int64 first_byte_position,
25 static HttpByteRange RightUnbounded(int64 first_byte_position);
30 int64 first_byte_position() const { return first_byte_position_; } function in class:net::HttpByteRange
http_byte_range_unittest.cc 10 int64 first_byte_position; member in struct:__anon13908
28 range.set_first_byte_position(tests[i].first_byte_position);
37 int64 first_byte_position; member in struct:__anon13909
60 range.set_first_byte_position(tests[i].first_byte_position);
67 EXPECT_EQ(tests[i].expected_lower_bound, range.first_byte_position());
73 EXPECT_EQ(tests[i].expected_lower_bound, range.first_byte_position());
partial_data.cc 128 current_range_start_ = byte_range_.first_byte_position();
182 byte_range_.first_byte_position() >= resource_size_) {
309 current_range_start_ = byte_range_.first_byte_position();
http_response_headers.cc 386 int64 start = byte_range.first_byte_position();
    [all...]
http_util.cc 243 int64 first_byte_position = -1; local
244 if (!base::StringToInt64(first_byte_pos, &first_byte_position))
246 range.set_first_byte_position(first_byte_position);
http_response_headers.h 256 // |*first_byte_position| = inclusive position of the first byte of the range
260 bool GetContentRange(int64* first_byte_position,
http_response_headers_unittest.cc 1329 int64 first_byte_position; local
    [all...]
  /external/chromium_org/android_webview/browser/net/
input_stream_reader.cc 69 byte_range->first_byte_position() + 1;
81 if (byte_range.IsValid() && byte_range.first_byte_position() > 0) {
82 int64_t bytes_to_skip = byte_range.first_byte_position();
  /external/chromium_org/net/url_request/
url_request_simple_job.cc 87 data_offset_ = byte_range_.first_byte_position();
89 byte_range_.first_byte_position() + 1;
url_request_file_job.cc 264 byte_range_.first_byte_position() + 1;
267 if (remaining_bytes_ > 0 && byte_range_.first_byte_position() != 0) {
269 byte_range_.first_byte_position(),
281 DidSeek(byte_range_.first_byte_position());
287 if (result != byte_range_.first_byte_position()) {
  /external/chromium_org/media/blink/
buffered_resource_loader.h 75 // |first_byte_position| - First byte to start loading from,
85 int64 first_byte_position,
189 // Return the |first_byte_position| passed into the ctor.
190 int64 first_byte_position() const;
199 const std::string& content_range_str, int64* first_byte_position,
buffered_resource_loader.cc 100 int64 first_byte_position,
114 first_byte_position_(first_byte_position),
690 int64 BufferedResourceLoader::first_byte_position() const { function in class:media::BufferedResourceLoader
696 const std::string& content_range_str, int64* first_byte_position,
711 first_byte_position) ||
726 if (*last_byte_position < *first_byte_position ||
737 int64 first_byte_position, last_byte_position, instance_size; local
739 &first_byte_position, &last_byte_position,
749 first_byte_position_ != first_byte_position) {
buffered_data_source.cc 114 int64 first_byte_position, int64 last_byte_position) {
123 first_byte_position,
460 host_->AddBufferedByteRange(loader_->first_byte_position(),
508 host_->AddBufferedByteRange(loader_->first_byte_position(), position);
buffered_data_source.h 124 int64 first_byte_position, int64 last_byte_position);
buffered_data_source_unittest.cc 67 BufferedResourceLoader* CreateMockResourceLoader(int64 first_byte_position,
72 BufferedDataSource::CreateResourceLoader(first_byte_position,
  /external/chromium_org/content/browser/fileapi/
file_system_url_request_job_unittest.cc 275 const size_t first_byte_position = 500; local
276 const size_t last_byte_position = buffer_size - first_byte_position;
277 std::string partial_buffer_string(buffer.get() + first_byte_position,
284 first_byte_position, last_byte_position).GetHeaderValue());
299 const size_t first_byte_position = 500; local
300 std::string partial_buffer_string(buffer.get() + first_byte_position,
306 net::HttpByteRange::RightUnbounded(first_byte_position).GetHeaderValue());
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_file_stream_reader.cc 43 if (range.HasFirstBytePosition() && range.first_byte_position() == total) {
44 *start = range.first_byte_position();
52 *start = range.first_byte_position();
53 *length = range.last_byte_position() - range.first_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);
235 if (byte_range_.first_byte_position())
236 Seek(byte_range_.first_byte_position());
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 176 int offset = static_cast<int>(range_requested_.first_byte_position());
178 range_requested_.first_byte_position() + 1);
  /external/chromium_org/storage/browser/fileapi/
file_system_url_request_job.cc 216 byte_range_.first_byte_position() + 1;
221 url_, byte_range_.first_byte_position(), remaining_bytes_, base::Time());
  /external/chromium_org/content/browser/streams/
stream_url_request_job.cc 162 if (ranges[0].first_byte_position() == 0) {
  /external/chromium_org/chrome/browser/chromeos/fileapi/
external_file_url_request_job.cc 260 const int64 offset = byte_range_.first_byte_position();
262 byte_range_.last_byte_position() + 1 - byte_range_.first_byte_position();
  /external/chromium_org/content/browser/appcache/
appcache_url_request_job.cc 319 int offset = static_cast<int>(range_requested_.first_byte_position());
321 range_requested_.first_byte_position() + 1);
  /external/chromium_org/google_apis/drive/
base_requests.cc 551 start_position_received = ranges[0].first_byte_position();

Completed in 1568 milliseconds

1 2