Lines Matching refs:listptr
233 #define rq_list_add(listptr, rq) do { \ argument
234 (rq)->rq_next = *(listptr); \
235 *(listptr) = rq; \
244 #define rq_list_pop(listptr) \ argument
247 if ((listptr) && *(listptr)) { \
248 __req = *(listptr); \
249 *(listptr) = __req->rq_next; \
254 #define rq_list_peek(listptr) \ argument
257 if ((listptr) && *(listptr)) \
258 __req = *(listptr); \
262 #define rq_list_for_each(listptr, pos) \ argument
263 for (pos = rq_list_peek((listptr)); pos; pos = rq_list_next(pos))
265 #define rq_list_for_each_safe(listptr, pos, nxt) \ argument
266 for (pos = rq_list_peek((listptr)), nxt = rq_list_next(pos); \