Lines Matching defs:metrics
361 struct hc_metrics_lite metrics;
368 tcp_hc_get(&inp->inp_inc, &metrics);
371 if (tp->t_srtt == 0 && (rtt = metrics.hc_rtt)) {
374 if (metrics.hc_rttvar) {
375 tp->t_rttvar = metrics.hc_rttvar;
386 if (metrics.hc_ssthresh) {
393 tp->snd_ssthresh = max(2 * maxseg, metrics.hc_ssthresh);
3805 struct hc_metrics_lite metrics;
3846 * In case we return early we need to initialize metrics
3881 metricptr = &metrics;
3962 struct hc_metrics_lite metrics;
3968 tcp_mss_update(tp, offer, -1, &metrics, &cap);
3981 if ((so->so_snd.sb_hiwat == V_tcp_sendspace) && metrics.hc_sendpipe)
3982 bufsize = metrics.hc_sendpipe;
4016 if ((so->so_rcv.sb_hiwat == V_tcp_recvspace) && metrics.hc_recvpipe)
4017 bufsize = metrics.hc_recvpipe;