Lines Matching refs:tot_out
10044 int error = 0, num_out, tot_out = 0, ret = 0, reason_code; in sctp_chunk_output() local
10230 tot_out += num_out; in sctp_chunk_output()
10279 sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES); in sctp_chunk_output()
10282 tot_out); in sctp_chunk_output()
12885 ssize_t tot_demand, tot_out = 0, max_out; in sctp_lower_sosend() local
12900 tot_out += SCTP_BUF_LEN(cntm); in sctp_lower_sosend()
12906 tot_out = sndlen; in sctp_lower_sosend()
12907 tot_demand = (tot_out + sizeof(struct sctp_paramhdr)); in sctp_lower_sosend()
12920 if (tot_out > max_out) { in sctp_lower_sosend()
12921 tot_out = max_out; in sctp_lower_sosend()
12925 ph->param_length = htons((uint16_t)(sizeof(struct sctp_paramhdr) + tot_out)); in sctp_lower_sosend()
12927 SCTP_BUF_LEN(mm) = (int)(tot_out + sizeof(struct sctp_paramhdr)); in sctp_lower_sosend()
12930 error = uiomove((caddr_t)ph, (int)tot_out, uio); in sctp_lower_sosend()