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

1 2

  /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:__anon4500::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_org/content/browser/download/
save_item.cc 23 total_bytes_(0),
46 if (received_bytes_ >= total_bytes_)
47 total_bytes_ = 0;
104 if (total_bytes_ > 0)
105 percent = static_cast<int>(received_bytes_ * 100.0 / total_bytes_);
129 DCHECK_EQ(0, total_bytes_);
130 total_bytes_ = total_bytes;
save_item.h 63 int64 total_bytes() const { return total_bytes_; }
91 int64 total_bytes_; member in class:content::SaveItem
download_item_impl.cc 125 total_bytes_(total_bytes),
175 total_bytes_(info.total_bytes),
232 total_bytes_(0),
650 if (total_bytes_ <= 0)
658 (total_bytes_ - received_bytes_) / speed);
671 if (delegate_delayed_complete_ || total_bytes_ <= 0)
674 return static_cast<int>(received_bytes_ * 100.0 / total_bytes_);
682 return total_bytes_;
917 total_bytes_ = total_bytes;
968 if (received_bytes_ > total_bytes_)
    [all...]
  /external/chromium_org/remoting/base/
compound_buffer.cc 23 : total_bytes_(0),
33 total_bytes_ = 0;
45 total_bytes_ += size;
68 total_bytes_ += size;
96 if (total_bytes_ <= bytes) {
101 total_bytes_ -= bytes;
118 if (total_bytes_ <= bytes) {
123 total_bytes_ -= bytes;
141 net::IOBufferWithSize* result = new net::IOBufferWithSize(total_bytes_);
142 CopyTo(result->data(), total_bytes_);
    [all...]
compound_buffer.h 60 int total_bytes() const { return total_bytes_; }
95 int total_bytes_; member in class:remoting::CompoundBuffer
  /external/chromium_org/content/renderer/media/
buffered_data_source.cc 88 total_bytes_(kPositionNotSpecified),
241 if (total_bytes_ != kPositionNotSpecified) {
242 *size_out = total_bytes_;
371 total_bytes_ = loader_->instance_size();
373 (total_bytes_ == kPositionNotSpecified || !loader_->range_supported());
451 } else if (bytes_read == 0 && total_bytes_ == kPositionNotSpecified) {
455 total_bytes_ = loader_->instance_size();
457 if (host() && total_bytes_ != kPositionNotSpecified) {
458 host()->SetTotalBytes(total_bytes_);
460 total_bytes_);
    [all...]
buffered_data_source.h 149 int64 total_bytes_; member in class:content::BufferedDataSource
  /external/chromium_org/third_party/tcmalloc/chromium/src/
profiledata.h 170 size_t total_bytes_; // How much output member in class:ProfileData
profiledata.cc 86 total_bytes_(0),
111 total_bytes_ = 0;
195 count_, evictions_, total_bytes_);
203 // Don't reset count_, evictions_, or total_bytes_ here. They're used
327 total_bytes_ += bytes;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiledata.h 170 size_t total_bytes_; // How much output member in class:ProfileData
profiledata.cc 86 total_bytes_(0),
111 total_bytes_ = 0;
195 count_, evictions_, total_bytes_);
203 // Don't reset count_, evictions_, or total_bytes_ here. They're used
327 total_bytes_ += bytes;
  /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/chromium_org/chrome/renderer/
chrome_render_process_observer.cc 171 size_t total_bytes_; member in class:__anon9288::HeapStatisticsCollector
185 total_bytes_ = heap_stats.total_heap_size();
235 total_bytes_ += total_bytes;
248 total_bytes_, used_bytes_));
  /external/chromium_org/media/base/
pipeline.cc 38 total_bytes_(0),
164 if (clock_->Duration() == TimeDelta() || total_bytes_ == 0)
184 return total_bytes_;
376 total_bytes_ = total_bytes;
381 TimeDelta time_offset = byte_offset * clock_->Duration() / total_bytes_;
pipeline.h 361 int64 total_bytes_; member in class:media::Pipeline
  /external/chromium_org/net/websockets/
websocket_channel.cc 53 SendBuffer() : total_bytes_(0) {}
55 // Add a WebSocketFrameChunk to the buffer and increase total_bytes_.
68 size_t total_bytes_; member in class:net::WebSocketChannel::SendBuffer
73 total_bytes_ += chunk->data->size();
  /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...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
coded_stream.cc 557 total_bytes_(0),
803 total_bytes_ += buffer_size_;
coded_stream.h 726 int total_bytes_; \/\/ Sum of sizes of all buffers seen so far. member in class:google::protobuf::io::CodedOutputStream
    [all...]

Completed in 1524 milliseconds

1 2