Searched refs:next_timeout (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dtimers.c69 static struct sys_timeo *next_timeout; variable in typeref:struct:sys_timeo
383 if (next_timeout == NULL) {
405 if (next_timeout == NULL) {
406 next_timeout = timeout;
410 if (next_timeout->time > msecs) {
411 next_timeout->time -= msecs;
412 timeout->next = next_timeout;
413 next_timeout = timeout;
415 for(t = next_timeout; t != NULL; t = t->next) {
444 if (next_timeout
[all...]
/vbox/src/VBox/NetworkServices/NAT/
H A Dpxdns.c150 struct request *next_timeout; member in struct:request
436 if ((req->next_timeout = *chain) != NULL) {
437 (*chain)->pprev_timeout = &req->next_timeout;
471 if (req->next_timeout != NULL) {
472 req->next_timeout->pprev_timeout = req->pprev_timeout;
474 *req->pprev_timeout = req->next_timeout;
476 req->next_timeout = NULL;
572 req = req->next_timeout;
H A Dpxping.c153 struct ping_pcb *next_timeout; member in struct:ping_pcb
863 if ((pcb->next_timeout = *chain) != NULL) {
864 (*chain)->pprev_timeout = &pcb->next_timeout;
877 if (pcb->next_timeout != NULL) {
878 pcb->next_timeout->pprev_timeout = pcb->pprev_timeout;
880 *pcb->pprev_timeout = pcb->next_timeout;
882 pcb->next_timeout = NULL;
950 pcb->next_timeout = NULL;
1052 pcb = pcb->next_timeout;

Completed in 54 milliseconds