Home
last modified time | relevance | path

Searched refs:nInFlight (Results 1 – 1 of 1) sorted by relevance

/external/webrtc/webrtc/p2p/base/
Dpseudotcp.cc310 uint32_t nInFlight = m_snd_nxt - m_snd_una; in NotifyClock() local
311 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in NotifyClock()
764 uint32_t nInFlight = m_snd_nxt - m_snd_una; in process() local
765 m_cwnd = std::min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()
808 uint32_t nInFlight = m_snd_nxt - m_snd_una; in process() local
809 m_ssthresh = std::max(nInFlight / 2, 2 * m_mss); in process()
1051 uint32_t nInFlight = m_snd_nxt - m_snd_una; in attemptSend() local
1052 uint32_t nUseable = (nInFlight < nWindow) ? (nWindow - nInFlight) : 0; in attemptSend()
1057 std::min(static_cast<uint32_t>(snd_buffered) - nInFlight, m_mss); in attemptSend()
1076 << " nInFlight: " << nInFlight in attemptSend()