Searched defs:pprev_timeout (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/NetworkServices/NAT/
H A Dpxdns.c149 struct request **pprev_timeout; member in struct:request
401 LWIP_ASSERT1(req->pprev_timeout == NULL);
432 LWIP_ASSERT1(req->pprev_timeout == NULL);
437 (*chain)->pprev_timeout = &req->next_timeout;
440 req->pprev_timeout = chain;
468 LWIP_ASSERT1(req->pprev_timeout != NULL);
472 req->next_timeout->pprev_timeout = req->pprev_timeout;
474 *req->pprev_timeout = req->next_timeout;
475 req->pprev_timeout
[all...]
H A Dpxping.c152 struct ping_pcb **pprev_timeout; member in struct:ping_pcb
846 LWIP_ASSERT1(pcb->pprev_timeout == NULL);
860 LWIP_ASSERT1(pcb->pprev_timeout == NULL);
864 (*chain)->pprev_timeout = &pcb->next_timeout;
867 pcb->pprev_timeout = chain;
876 LWIP_ASSERT1(pcb->pprev_timeout != NULL);
878 pcb->next_timeout->pprev_timeout = pcb->pprev_timeout;
880 *pcb->pprev_timeout = pcb->next_timeout;
881 pcb->pprev_timeout
[all...]

Completed in 46 milliseconds