Searched refs:tcp_tmp_pcb (Results 1 – 4 of 4) sorted by relevance
344 struct tcp_pcb *tcp_tmp_pcb; \346 for (tcp_tmp_pcb = *(pcbs); \347 tcp_tmp_pcb != NULL; \348 tcp_tmp_pcb = tcp_tmp_pcb->next) { \349 … LWIP_ASSERT("TCP_REG: already registered\n", tcp_tmp_pcb != (npcb)); \359 struct tcp_pcb *tcp_tmp_pcb; \364 … } else for (tcp_tmp_pcb = *(pcbs); tcp_tmp_pcb != NULL; tcp_tmp_pcb = tcp_tmp_pcb->next) { \365 if(tcp_tmp_pcb->next == (npcb)) { \366 tcp_tmp_pcb->next = (npcb)->next; \390 struct tcp_pcb *tcp_tmp_pcb; \[all …]
359 struct tcp_pcb *tcp_tmp_pcb; \361 for (tcp_tmp_pcb = *(pcbs); \362 tcp_tmp_pcb != NULL; \363 tcp_tmp_pcb = tcp_tmp_pcb->next) { \364 … LWIP_ASSERT("TCP_REG: already registered\n", tcp_tmp_pcb != (npcb)); \374 struct tcp_pcb *tcp_tmp_pcb; \379 … } else for (tcp_tmp_pcb = *(pcbs); tcp_tmp_pcb != NULL; tcp_tmp_pcb = tcp_tmp_pcb->next) { \380 if(tcp_tmp_pcb->next == (npcb)) { \381 tcp_tmp_pcb->next = (npcb)->next; \405 struct tcp_pcb *tcp_tmp_pcb; \[all …]
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; \[all …]
117 struct tcp_pcb *tcp_tmp_pcb; variable