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

1 2

  /external/chromium/net/http/
http_byte_range_unittest.cc 10 int64 first_byte_position; member in struct:__anon5507
28 range.set_first_byte_position(tests[i].first_byte_position);
37 int64 first_byte_position; member in struct:__anon5508
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());
http_byte_range.h 22 int64 first_byte_position() const { return first_byte_position_; } function in class:net::HttpByteRange
http_util.cc 247 int64 first_byte_position = -1; local
248 if (!base::StringToInt64(first_byte_pos, &first_byte_position))
250 range.set_first_byte_position(first_byte_position);
partial_data.cc 139 current_range_start_ = byte_range_.first_byte_position();
184 byte_range_.first_byte_position() >= resource_size_) {
305 current_range_start_ = byte_range_.first_byte_position();
385 start = byte_range_.first_byte_position();
http_response_headers.cc     [all...]
http_response_headers.h 233 // |*first_byte_position| = inclusive position of the first byte of the range
237 bool GetContentRange(int64* first_byte_position,
  /external/chromium_org/net/http/
http_byte_range_unittest.cc 10 int64 first_byte_position; member in struct:__anon11161
28 range.set_first_byte_position(tests[i].first_byte_position);
37 int64 first_byte_position; member in struct:__anon11162
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());
http_byte_range.h 22 int64 first_byte_position() const { return first_byte_position_; } function in class:net::HttpByteRange
partial_data.cc 141 current_range_start_ = byte_range_.first_byte_position();
186 byte_range_.first_byte_position() >= resource_size_) {
310 current_range_start_ = byte_range_.first_byte_position();
390 start = byte_range_.first_byte_position();
  /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/content/renderer/media/
buffered_resource_loader.h 81 // |first_byte_position| - First byte to start loading from,
91 int64 first_byte_position,
193 // Return the |first_byte_position| passed into the ctor.
194 int64 first_byte_position() const;
203 const std::string& content_range_str, int64* first_byte_position,
240 // |first_byte_position| and |last_byte_position|. Negative numbers other
241 // than |kPositionNotSpecified| are not allowed for |first_byte_position| and
242 // |last_byte_position|. |first_byte_position| should always be less than or
245 std::string GenerateHeaders(int64 first_byte_position,
buffered_resource_loader.cc 101 int64 first_byte_position,
115 first_byte_position_(first_byte_position),
682 int64 BufferedResourceLoader::first_byte_position() const { function in class:content::BufferedResourceLoader
688 const std::string& content_range_str, int64* first_byte_position,
703 first_byte_position) ||
718 if (*last_byte_position < *first_byte_position ||
729 int64 first_byte_position, last_byte_position, instance_size; local
731 &first_byte_position, &last_byte_position,
741 first_byte_position_ != first_byte_position) {
751 int64 first_byte_position,
    [all...]
buffered_data_source.cc 111 int64 first_byte_position, int64 last_byte_position) {
120 first_byte_position,
459 host()->AddBufferedByteRange(loader_->first_byte_position(),
507 ReportOrQueueBufferedBytes(loader_->first_byte_position(), position);
buffered_data_source.h 93 int64 first_byte_position, int64 last_byte_position);
  /external/chromium/webkit/glue/media/
buffered_resource_loader.cc 49 int64 first_byte_position,
58 first_byte_position_(first_byte_position),
585 int first_byte_position, last_byte_position, instance_size; local
588 &first_byte_position,
599 first_byte_position_ != first_byte_position) {
609 int64 first_byte_position,
613 if (first_byte_position > kPositionNotSpecified &&
615 if (first_byte_position <= last_byte_position) {
617 first_byte_position,
620 } else if (first_byte_position > kPositionNotSpecified)
    [all...]
buffered_resource_loader.h 51 // |first_byte_position| - First byte to start loading from,
56 int64 first_byte_position,
190 // |first_byte_position| and |last_byte_position|. Negative numbers other
191 // than |kPositionNotSpecified| are not allowed for |first_byte_position| and
192 // |last_byte_position|. |first_byte_position| should always be less than or
195 std::string GenerateHeaders(int64 first_byte_position,
buffered_data_source.h 62 int64 first_byte_position, int64 last_byte_position);
  /external/chromium_org/webkit/browser/fileapi/
file_system_url_request_job_unittest.cc 234 const size_t first_byte_position = 500; local
235 const size_t last_byte_position = buffer_size - first_byte_position;
236 std::string partial_buffer_string(buffer.get() + first_byte_position,
243 first_byte_position, last_byte_position));
258 const size_t first_byte_position = 500; local
259 std::string partial_buffer_string(buffer.get() + first_byte_position,
265 first_byte_position));
file_system_url_request_job.cc 192 byte_range_.first_byte_position() + 1;
197 url_, byte_range_.first_byte_position(), base::Time());
  /external/chromium_org/net/url_request/
url_request_file_job.cc 254 byte_range_.first_byte_position() + 1;
257 if (remaining_bytes_ > 0 && byte_range_.first_byte_position() != 0) {
258 int rv = stream_->Seek(FROM_BEGIN, byte_range_.first_byte_position(),
270 DidSeek(byte_range_.first_byte_position());
275 if (result != byte_range_.first_byte_position()) {
  /external/chromium/net/url_request/
url_request_file_job.cc 354 byte_range_.first_byte_position() + 1;
363 byte_range_.first_byte_position() != 0 &&
364 byte_range_.first_byte_position() !=
365 stream_.Seek(FROM_BEGIN, byte_range_.first_byte_position())) {
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_file_stream_reader.cc 372 byte_range.last_byte_position() - byte_range.first_byte_position() + 1;
380 byte_range.first_byte_position(), range_length,
392 byte_range.first_byte_position(),
  /external/chromium_org/webkit/browser/blob/
blob_url_request_job.cc 225 byte_range_.first_byte_position() + 1;
229 if (byte_range_.first_byte_position())
230 Seek(byte_range_.first_byte_position());
  /external/chromium_org/content/browser/streams/
stream_url_request_job.cc 133 if (ranges[0].first_byte_position() == 0) {
  /external/chromium_org/webkit/browser/appcache/
appcache_url_request_job.cc 313 int offset = static_cast<int>(range_requested_.first_byte_position());
315 range_requested_.first_byte_position() + 1);

Completed in 676 milliseconds

1 2