Searched refs:bytes_since_last_start_ (Results 1 – 1 of 1) sorted by relevance
61 bytes_since_last_start_(0) { in BandwidthMetrics()75 bytes_since_last_start_ = 0; in StartStream()87 if (bytes_since_last_start_ < kRecordSizeThreshold) in StopStream()93 double kbps = static_cast<double>(bytes_since_last_start_) * 8 / ms; in StopStream()107 bytes_since_last_start_ += static_cast<int64>(bytes); in RecordBytes()115 int64 bytes_since_last_start_; // Bytes tracked during this "session". variable