Searched refs:max_burst (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/net/quic/congestion_control/
H A Dtcp_cubic_sender.cc237 const QuicByteCount max_burst = kMaxBurstLength * kMaxSegmentSize; local
242 return slow_start_limited || available_bytes <= max_burst;
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_cc_functions.c75 if ((assoc->max_burst > 0) && (cwnd_in_mtu > assoc->max_burst))
76 cwnd_in_mtu = assoc->max_burst;
1306 if ((stcb->asoc.max_burst > 0) &&
1307 (stcb->asoc.max_burst * net->mtu < incr)) {
1308 incr = stcb->asoc.max_burst * net->mtu;
1459 if ((stcb->asoc.max_burst > 0) && (cwnd_in_mtu > stcb->asoc.max_burst))
1460 cwnd_in_mtu = stcb->asoc.max_burst;
H A Dsctp_pcb.h402 uint32_t max_burst; member in struct:sctp_pcb
H A Dsctp_structs.h1187 uint32_t max_burst; member in struct:sctp_association
H A Dsctp_usrreq.c2688 if (inp->sctp_ep.max_burst < 256) {
2689 *value = inp->sctp_ep.max_burst;
2702 av->assoc_value = stcb->asoc.max_burst;
2709 av->assoc_value = inp->sctp_ep.max_burst;
5474 inp->sctp_ep.max_burst = *burst;
5483 stcb->asoc.max_burst = av->assoc_value;
5491 inp->sctp_ep.max_burst = av->assoc_value;
5499 stcb->asoc.max_burst = av->assoc_value;
H A Dsctp_output.c10555 * { burst_limit = asoc->max_burst *
10558 if (asoc->max_burst > 0) {
10560 if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) {
10562 asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst);
10564 sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED);
10632 ((asoc->max_burst == 0) ||
10634 (burst_cnt < asoc->max_burst)));
10637 if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) {
H A Dsctputil.c973 asoc->max_burst = inp->sctp_ep.max_burst;
H A Dsctp_pcb.c3059 m->max_burst = SCTP_BASE_SYSCTL(sctp_max_burst_default);

Completed in 1386 milliseconds