Lines Matching defs:sent_total
636 u16_t sent_total = 0;
660 err = tcp_write(pcb, &tx_data[sent_total], TCP_MSS, TCP_WRITE_FLAG_COPY);
662 sent_total += TCP_MSS;
724 u16_t sent_total = 0;
748 err = tcp_write(pcb, &tx_data[sent_total], TCP_MSS, TCP_WRITE_FLAG_COPY);
750 sent_total += TCP_MSS;
800 u16_t sent_total;
829 sent_total = 0;
832 err = tcp_write(pcb, &tx_data[sent_total], initial_data_len, TCP_WRITE_FLAG_COPY);
839 sent_total += initial_data_len;
841 for (; sent_total < (TCP_WND - TCP_MSS); sent_total += TCP_MSS) {
842 err = tcp_write(pcb, &tx_data[sent_total], TCP_MSS, TCP_WRITE_FLAG_COPY);
850 EXPECT(sent_total == (TCP_WND - TCP_MSS));
861 err = tcp_write(pcb, &tx_data[sent_total], TCP_MSS, TCP_WRITE_FLAG_COPY);
862 sent_total += TCP_MSS;
884 err = tcp_write(pcb, &tx_data[sent_total], 1, TCP_WRITE_FLAG_COPY);
1074 u16_t sent_total = 0;
1096 err = tcp_write(pcb, &tx_data[sent_total], TCP_MSS, TCP_WRITE_FLAG_COPY);
1098 sent_total += TCP_MSS;
1128 err = tcp_write(pcb, &tx_data[sent_total], TCP_MSS, TCP_WRITE_FLAG_COPY);
1130 sent_total += TCP_MSS;