Lines Matching refs:m_rx_rto
251 m_rx_rto = DEF_RTO; in PseudoTcp()
288 if (m_rto_base && (rtc::TimeDiff32(m_rto_base + m_rx_rto, now) <= 0)) { in NotifyClock()
295 RTC_LOG(LS_INFO) << "timeout retransmit (rto: " << m_rx_rto in NotifyClock()
313 m_rx_rto = std::min(rto_limit, m_rx_rto * 2); in NotifyClock()
319 if ((m_snd_wnd == 0) && (rtc::TimeDiff32(m_lastsend + m_rx_rto, now) <= 0)) { in NotifyClock()
330 m_rx_rto = std::min(MAX_RTO, m_rx_rto * 2); in NotifyClock()
625 rtc::TimeDiff32(m_rto_base + m_rx_rto, now)); in clock_check()
629 rtc::TimeDiff32(m_lastsend + m_rx_rto, now)); in clock_check()
724 m_rx_rto = rtc::SafeClamp(m_rx_srtt + rtc::SafeMax(1, 4 * m_rx_rttvar), in process()
728 << " rto: " << m_rx_rto; in process()
1064 if (rtc::TimeDiff32(now, m_lastsend) > static_cast<long>(m_rx_rto)) { in attemptSend()