Home
last modified time | relevance | path

Searched refs:unsent (Results 1 – 5 of 5) sorted by relevance

/external/lib/lwip/core/
A Dtcp_out.c128 if (pcb->unsent != NULL) { in tcp_send_fin()
422 if (pcb->unsent != NULL) { in tcp_write()
668 pcb->unsent = queue; in tcp_write()
705 pcb->unsent != NULL); in tcp_write()
788 if (pcb->unsent == NULL) { in tcp_enqueue_flags()
789 pcb->unsent = seg; in tcp_enqueue_flags()
920 seg = pcb->unsent; in tcp_output()
1029 seg = pcb->unsent; in tcp_output()
1250 seg->next = pcb->unsent; in tcp_rexmit_rto()
1289 cur_seg = &(pcb->unsent); in tcp_rexmit()
[all …]
A Dtcp_in.c1040 pcb->unsent != NULL);
1063 while (pcb->unsent != NULL &&
1064 TCP_SEQ_BETWEEN(ackno, ntohl(pcb->unsent->tcphdr->seqno) +
1065 TCP_TCPLEN(pcb->unsent), pcb->snd_nxt)) {
1067 … ntohl(pcb->unsent->tcphdr->seqno), ntohl(pcb->unsent->tcphdr->seqno) +
1068 TCP_TCPLEN(pcb->unsent)));
1070 next = pcb->unsent;
1071 pcb->unsent = pcb->unsent->next;
1073 if (pcb->unsent == NULL) {
1088 pcb->unacked != NULL || pcb->unsent != NULL);
A Dtcp.c385 if (pcb->unsent != NULL) { in tcp_abandon()
386 tcp_segs_free(pcb->unsent); in tcp_abandon()
1504 if (pcb->unsent != NULL) { in tcp_pcb_purge()
1522 tcp_segs_free(pcb->unsent); in tcp_pcb_purge()
1524 pcb->unacked = pcb->unsent = NULL; in tcp_pcb_purge()
1553 LWIP_ASSERT("unsent segments leaking", pcb->unsent == NULL); in tcp_pcb_remove()
/external/lib/lwip/include/lwip/
A Dtcp_impl.h86 (((tpcb)->unsent != NULL) && (((tpcb)->unsent->next != NULL) || \
87 ((tpcb)->unsent->len >= (tpcb)->mss))) || \
A Dtcp.h242 struct tcp_seg *unsent; /* Unsent (queued) segments. */ member

Completed in 12 milliseconds