Lines Matching refs:m_rx_rto
252 m_rx_rto = DEF_RTO; in PseudoTcp()
289 if (m_rto_base && (rtc::TimeDiff32(m_rto_base + m_rx_rto, now) <= 0)) { in NotifyClock()
296 RTC_LOG(LS_INFO) << "timeout retransmit (rto: " << m_rx_rto in NotifyClock()
314 m_rx_rto = std::min(rto_limit, m_rx_rto * 2); in NotifyClock()
320 if ((m_snd_wnd == 0) && (rtc::TimeDiff32(m_lastsend + m_rx_rto, now) <= 0)) { in NotifyClock()
331 m_rx_rto = std::min(MAX_RTO, m_rx_rto * 2); in NotifyClock()
617 rtc::TimeDiff32(m_rto_base + m_rx_rto, now)); in clock_check()
621 rtc::TimeDiff32(m_lastsend + m_rx_rto, now)); in clock_check()
716 m_rx_rto = rtc::SafeClamp(m_rx_srtt + rtc::SafeMax(1, 4 * m_rx_rttvar), in process()
720 << " rto: " << m_rx_rto; in process()
1049 if (rtc::TimeDiff32(now, m_lastsend) > static_cast<long>(m_rx_rto)) { in attemptSend()