Lines Matching refs:tcp_tmp_pcb
322 extern struct tcp_pcb *tcp_tmp_pcb; /* Only used for temporary storage. */
338 for(tcp_tmp_pcb = *(pcbs); \
339 tcp_tmp_pcb != NULL; \
340 tcp_tmp_pcb = tcp_tmp_pcb->next) { \
341 LWIP_ASSERT("TCP_REG: already registered\n", tcp_tmp_pcb != (npcb)); \
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; \
381 for(tcp_tmp_pcb = *pcbs; \
382 tcp_tmp_pcb != NULL; \
383 tcp_tmp_pcb = tcp_tmp_pcb->next) { \
384 if(tcp_tmp_pcb->next == (npcb)) { \
385 tcp_tmp_pcb->next = (npcb)->next; \