Searched defs:cwnd (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/net/quic/congestion_control/
H A Dsend_algorithm_simulator.h33 QuicByteCount cwnd = send_algorithm->GetCongestionWindow(); local
34 max_cwnd = std::max(max_cwnd, cwnd);
35 min_cwnd = std::min(min_cwnd, cwnd);
36 if (last_cwnd > cwnd) {
37 max_cwnd_drop = std::max(max_cwnd_drop, last_cwnd - cwnd);
39 last_cwnd = cwnd;
45 " cwnd:%" PRIu64
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dpseudotcp.cc1048 uint32 cwnd = m_cwnd; local
1050 cwnd += m_dup_acks * m_mss;
1052 uint32 nWindow = rtc::_min(m_snd_wnd, cwnd);
1076 LOG(LS_INFO) << "[cwnd: " << m_cwnd
1155 // Enforce minimums on ssthresh and cwnd
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_cc_functions.c69 net->cwnd = min((net->mtu * 4), max((2 * net->mtu), SCTP_INITIAL_CWND));
77 net->cwnd = (net->mtu - sizeof(struct sctphdr)) * cwnd_in_mtu;
82 net->cwnd /= assoc->numnets;
83 if (net->cwnd < (net->mtu - sizeof(struct sctphdr))) {
84 net->cwnd = net->mtu - sizeof(struct sctphdr);
89 SDT_PROBE(sctp, cwnd, net, init,
91 0, net->cwnd);
115 t_cwnd += net->cwnd;
117 t_ucwnd_sbw += (uint64_t)net->cwnd / (uint64_t)net->lastsa;
138 * adjust ssthresh and cwnd
1448 uint32_t cwnd_in_mtu, cwnd; local
1599 int32_t cwnd; member in struct:sctp_hs_raise_drop
[all...]
H A Dsctp_structs.h339 uint32_t cwnd; /* actual cwnd */ member in struct:sctp_nets
340 uint32_t prev_cwnd; /* cwnd before any processing */
341 uint32_t ecn_prev_cwnd; /* ECN prev cwnd at first ecn_echo seen in new window */
H A Dsctp_uio.h766 uint32_t cwnd_new_value;/* cwnd in k */
934 struct sctp_cwnd_args cwnd; member in union:sctp_cwnd_log::__anon15642
1087 uint32_t sctps_ecnereducedcwnd; /* Number of times a ECN reduced the cwnd */
1105 uint32_t sctps_send_cwnd_avoid; /* Send cwnd full avoidance, already max burst inflight to net */
1261 uint32_t cwnd; /* */ member in struct:xsctp_raddr
/external/chromium_org/net/spdy/
H A Dspdy_session.cc2792 uint32 cwnd = (it != server_settings_map.end()) ? it->second.second : 0; local
2793 UMA_HISTOGRAM_CUSTOM_COUNTS("Net.SpdySettingsCwndSent", cwnd, 1, 200, 100);
3011 // Record several different histograms to see if cwnd converges
/external/iproute2/misc/
H A Dss.c447 int rto, ato, qack, cwnd, ssthresh; member in struct:tcpstat
1227 &s.cwnd, &s.ssthresh, opt);
1234 s.cwnd = 2;
1265 if (s.cwnd != 2)
1266 printf(" cwnd:%d", s.cwnd);
1396 printf(" cwnd:%d", info->tcpi_snd_cwnd);

Completed in 3239 milliseconds