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

1 2

  /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 140 total_bytes_(total_bytes),
192 total_bytes_(info.total_bytes),
249 total_bytes_(0),
689 if (total_bytes_ <= 0)
697 (total_bytes_ - received_bytes_) / speed);
710 if (delegate_delayed_complete_ || total_bytes_ <= 0)
713 return static_cast<int>(received_bytes_ * 100.0 / total_bytes_);
721 return total_bytes_;
    [all...]
download_item_impl.h 462 int64 total_bytes_; member in class:content::DownloadItemImpl
  /external/chromium_org/media/blink/
buffered_data_source_host_impl.cc 10 : total_bytes_(0),
16 total_bytes_ = total_bytes;
41 if (total_bytes_ && buffered_byte_ranges_.size()) {
46 TimeForByteOffset(start, total_bytes_, media_duration),
47 TimeForByteOffset(end, total_bytes_, media_duration));
buffered_data_source_host_impl.h 37 int64 total_bytes_; member in class:media::BufferedDataSourceHostImpl
buffered_data_source.cc 90 total_bytes_(kPositionNotSpecified),
250 if (total_bytes_ != kPositionNotSpecified) {
251 *size_out = total_bytes_;
353 total_bytes_ = loader_->instance_size();
356 (total_bytes_ == kPositionNotSpecified || !loader_->range_supported());
359 static_cast<double>(total_bytes_));
372 if (total_bytes_ != kPositionNotSpecified) {
373 host_->SetTotalBytes(total_bytes_);
375 host_->AddBufferedByteRange(0, total_bytes_);
452 } else if (bytes_read == 0 && total_bytes_ == kPositionNotSpecified)
    [all...]
buffered_data_source.h 170 int64 total_bytes_; member in class:media::BufferedDataSource
  /external/chromium_org/components/component_updater/
url_fetcher_downloader.cc 26 total_bytes_(-1) {
51 total_bytes_ = -1;
75 result.total_bytes = total_bytes_;
82 download_metrics.total_bytes = total_bytes_;
100 total_bytes_ = total;
104 result.total_bytes = total_bytes_;
url_fetcher_downloader.h 51 int64_t total_bytes_; member in class:component_updater::UrlFetcherDownloader
  /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/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_org/third_party/webrtc/modules/audio_coding/main/test/
TestAllCodecs.h 47 uint64_t total_bytes_; member in class:webrtc::TestPack
TestStereo.h 55 uint64_t total_bytes_; member in class:webrtc::TestPackStereo
TestAllCodecs.cc 43 total_bytes_(0),
86 total_bytes_ += payload_size;
  /external/chromium_org/chrome/renderer/
chrome_render_process_observer.cc 169 size_t total_bytes_; member in class:__anon10425::HeapStatisticsCollector
183 total_bytes_ = heap_stats.total_heap_size();
233 total_bytes_ += total_bytes;
246 total_bytes_, used_bytes_));
  /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_;
  /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...]
  /external/chromium_org/net/websockets/
websocket_channel.cc 129 SendBuffer() : total_bytes_(0) {}
131 // Add a WebSocketFrame to the buffer and increase total_bytes_.
144 size_t total_bytes_; member in class:net::WebSocketChannel::SendBuffer
148 total_bytes_ += frame->header.payload_length;
    [all...]

Completed in 1759 milliseconds

1 2