Lines Matching refs:next
86 (((tpcb)->unsent != NULL) && (((tpcb)->unsent->next != NULL) || \
278 struct tcp_seg *next; /* used when putting segements on a queue */
340 tcp_tmp_pcb = tcp_tmp_pcb->next) { \
344 (npcb)->next = *(pcbs); \
345 LWIP_ASSERT("TCP_REG: npcb->next != npcb", (npcb)->next != (npcb)); \
354 *(pcbs) = (*pcbs)->next; \
355 } else for(tcp_tmp_pcb = *(pcbs); tcp_tmp_pcb != NULL; tcp_tmp_pcb = tcp_tmp_pcb->next) { \
356 if(tcp_tmp_pcb->next == (npcb)) { \
357 tcp_tmp_pcb->next = (npcb)->next; \
361 (npcb)->next = NULL; \
370 (npcb)->next = *pcbs; \
378 (*(pcbs)) = (*pcbs)->next; \
383 tcp_tmp_pcb = tcp_tmp_pcb->next) { \
384 if(tcp_tmp_pcb->next == (npcb)) { \
385 tcp_tmp_pcb->next = (npcb)->next; \
390 (npcb)->next = NULL; \