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

  /external/chromium/net/http/
http_byte_range.cc 11 const int64 kPositionNotSpecified = -1;
18 : first_byte_position_(kPositionNotSpecified),
19 last_byte_position_(kPositionNotSpecified),
20 suffix_length_(kPositionNotSpecified),
25 return suffix_length_ != kPositionNotSpecified;
29 return first_byte_position_ != kPositionNotSpecified;
33 return last_byte_position_ != kPositionNotSpecified;
40 (last_byte_position_ == kPositionNotSpecified ||
  /external/chromium_org/net/http/
http_byte_range.cc 11 const int64 kPositionNotSpecified = -1;
18 : first_byte_position_(kPositionNotSpecified),
19 last_byte_position_(kPositionNotSpecified),
20 suffix_length_(kPositionNotSpecified),
25 return suffix_length_ != kPositionNotSpecified;
29 return first_byte_position_ != kPositionNotSpecified;
33 return last_byte_position_ != kPositionNotSpecified;
40 (last_byte_position_ == kPositionNotSpecified ||
  /external/chromium/webkit/glue/media/
buffered_data_source.cc 48 : total_bytes_(kPositionNotSpecified),
191 if (total_bytes_ != kPositionNotSpecified) {
234 loader_ = CreateResourceLoader(0, kPositionNotSpecified);
243 loader_ = CreateResourceLoader(kPositionNotSpecified,
244 kPositionNotSpecified);
320 loader_ = CreateResourceLoader(read_position_, kPositionNotSpecified);
357 loader_ = CreateResourceLoader(read_position_, kPositionNotSpecified);
473 streaming_ = (instance_size == kPositionNotSpecified) ||
484 loader_ = CreateResourceLoader(kPositionNotSpecified,
485 kPositionNotSpecified);
    [all...]
buffered_resource_loader.cc 63 content_length_(kPositionNotSpecified),
64 instance_size_(kPositionNotSpecified),
92 if (first_byte_position_ != kPositionNotSpecified) {
165 if (instance_size_ != kPositionNotSpecified &&
207 return kPositionNotSpecified;
320 // Expected content length can be |kPositionNotSpecified|, in that case
388 if (instance_size_ == kPositionNotSpecified) {
594 if (instance_size != kPositionNotSpecified) {
598 if (first_byte_position_ != kPositionNotSpecified &&
613 if (first_byte_position > kPositionNotSpecified &
    [all...]
buffered_resource_loader.h 25 const int64 kPositionNotSpecified = -1;
52 // |kPositionNotSpecified| for not specified.
54 // |kPositionNotSpecified| for not specified.
94 // |kPositionNotSpecified| if such value is not available.
98 // started. If this value is |kPositionNotSpecified|, then content length is
103 // |kPositionNotSpecified|, then the size is unknown.
191 // than |kPositionNotSpecified| are not allowed for |first_byte_position| and
193 // equal to |last_byte_position| if they are both not |kPositionNotSpecified|.
  /external/chromium_org/content/renderer/media/
buffered_resource_loader.cc 119 content_length_(kPositionNotSpecified),
120 instance_size_(kPositionNotSpecified),
155 if (first_byte_position_ != kPositionNotSpecified) {
245 if (instance_size_ != kPositionNotSpecified &&
382 // Expected content length can be |kPositionNotSpecified|, in that case
406 last_byte_position_ == kPositionNotSpecified) {
425 CHECK_EQ(instance_size_, kPositionNotSpecified);
426 if (content_length_ != kPositionNotSpecified) {
427 if (first_byte_position_ == kPositionNotSpecified)
429 else if (last_byte_position_ == kPositionNotSpecified)
    [all...]
buffered_data_source.cc 88 total_bytes_(kPositionNotSpecified),
152 loader_.reset(CreateResourceLoader(0, kPositionNotSpecified));
157 loader_.reset(CreateResourceLoader(kPositionNotSpecified,
158 kPositionNotSpecified));
241 if (total_bytes_ != kPositionNotSpecified) {
368 loader_->instance_size() != kPositionNotSpecified);
373 (total_bytes_ == kPositionNotSpecified || !loader_->range_supported());
435 read_op_->position(), kPositionNotSpecified));
451 } else if (bytes_read == 0 && total_bytes_ == kPositionNotSpecified) {
457 if (host() && total_bytes_ != kPositionNotSpecified) {
    [all...]
buffered_resource_loader.h 29 const int64 kPositionNotSpecified = -1;
82 // |kPositionNotSpecified| for not specified.
84 // |kPositionNotSpecified| for not specified.
130 // started. If this value is |kPositionNotSpecified|, then content length is
135 // |kPositionNotSpecified|, then the size is unknown.
198 // |*instance_size| may be set to kPositionNotSpecified if the range ends in
241 // than |kPositionNotSpecified| are not allowed for |first_byte_position| and
243 // equal to |last_byte_position| if they are both not |kPositionNotSpecified|.
buffered_resource_loader_unittest.cc     [all...]

Completed in 918 milliseconds