HomeSort by: relevance | last modified time | path
    Searched refs:rq_next (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/altq/
altq_blue.h 104 struct blue_queue *rq_next; /* next blue_state in the list */ member in struct:blue_queue
altq_rio.h 127 struct rio_queue *rq_next; /* next red_state in the list */ member in struct:rio_queue
altq_blue.c 246 rqp->rq_next = blue_list;
336 blue_list = rqp->rq_next;
338 for (tmp = blue_list; tmp != NULL; tmp = tmp->rq_next)
339 if (tmp->rq_next == rqp) {
340 tmp->rq_next = rqp->rq_next;
altq_rio.c 580 rqp->rq_next = rio_list;
706 rio_list = rqp->rq_next;
708 for (tmp = rio_list; tmp != NULL; tmp = tmp->rq_next)
709 if (tmp->rq_next == rqp) {
710 tmp->rq_next = rqp->rq_next;
altq_red.h 171 struct red_queue *rq_next; /* next red_state in the list */ member in struct:red_queue
altq_red.c 846 rqp->rq_next = red_list;
985 red_list = rqp->rq_next;
987 for (tmp = red_list; tmp != NULL; tmp = tmp->rq_next)
988 if (tmp->rq_next == rqp) {
989 tmp->rq_next = rqp->rq_next;

Completed in 18 milliseconds