Home
last modified time | relevance | path

Searched refs:tcp_tmp_pcb (Results 1 – 4 of 4) sorted by relevance

/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/priv/
H A Dtcp_priv.h344 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 …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/priv/
H A Dtcp_priv.h359 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 …]
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/
H A Dtcp_impl.h322 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 …]
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/core/
H A Dtcp.c117 struct tcp_pcb *tcp_tmp_pcb; variable