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

  /external/chromium/chrome/browser/download/
save_item.cc 22 total_bytes_(0),
45 if (received_bytes_ >= total_bytes_)
46 total_bytes_ = 0;
103 if (total_bytes_ > 0)
104 percent = static_cast<int>(received_bytes_ * 100.0 / total_bytes_);
128 DCHECK(total_bytes_ == 0);
129 total_bytes_ = total_bytes;
download_status_updater_unittest.cc 20 total_bytes_(0) {
46 return total_bytes_;
62 total_bytes_ = total_bytes;
71 int64 total_bytes_; member in class:__anon3485::MockDelegate
save_item.h 62 int64 total_bytes() const { return total_bytes_; }
90 int64 total_bytes_; member in class:SaveItem
download_item.cc 125 total_bytes_(info.total_bytes),
165 total_bytes_(info.total_bytes),
205 total_bytes_(0),
311 if (received_bytes_ > total_bytes_)
312 total_bytes_ = 0;
438 if (total_bytes_ <= 0)
446 base::TimeDelta::FromSeconds((total_bytes_ - received_bytes_) / speed);
460 if (total_bytes_ > 0)
461 percent = static_cast<int>(received_bytes_ * 100.0 / total_bytes_);
download_item.h 253 int64 total_bytes() const { return total_bytes_; }
254 void set_total_bytes(int64 total_bytes) { total_bytes_ = total_bytes; }
337 int64 total_bytes_; member in class:DownloadItem
  /external/chromium/webkit/glue/media/
buffered_data_source.cc 48 : total_bytes_(kPositionNotSpecified),
191 if (total_bytes_ != kPositionNotSpecified) {
192 *size_out = total_bytes_;
471 total_bytes_ = instance_size;
535 total_bytes_ = instance_size;
536 buffered_bytes_ = total_bytes_;
631 } else if (error == 0 && total_bytes_ == kPositionNotSpecified) {
635 total_bytes_ = loader_->instance_size();
637 if (host() && total_bytes_ != kPositionNotSpecified)
638 host()->SetTotalBytes(total_bytes_);
    [all...]
buffered_data_source.h 147 int64 total_bytes_; member in class:webkit_glue::BufferedDataSource
  /external/protobuf/src/google/protobuf/io/
coded_stream.h 683 int total_bytes_; // Sum of sizes of all buffers seen so far. member in class:google::protobuf::io::CodedOutputStream
    [all...]
coded_stream.cc 530 total_bytes_(0),
776 total_bytes_ += buffer_size_;

Completed in 258 milliseconds