Home | History | Annotate | Download | only in base

Lines Matching refs:rtt

85 // We will restrict RTT estimates (when used for determining state) to be
90 // When we don't have any RTT data, we have to pick something reasonable. We
94 // Computes our estimate of the RTT given the current estimate.
95 inline uint32 ConservativeRTTEstimate(uint32 rtt) {
96 return talk_base::_max(MINIMUM_RTT, talk_base::_min(MAXIMUM_RTT, 2 * rtt));
99 // Weighting of the old rtt value to new data.
662 uint32 rtt = ConservativeRTTEstimate(rtt_);
672 pings << ", rtt=" << rtt << ", now=" << now;
683 << " ms without a ping, rtt=" << rtt;
699 rtt,
713 << " rtt=" << rtt;
723 << " ms without a response, rtt=" << rtt;
784 uint32 rtt = request->Elapsed();
797 << ", rtt=" << rtt;
800 rtt_ = (RTT_RATIO * rtt_ + rtt) / (RTT_RATIO + 1);