Lines Matching defs:list
14 #include <linux/list.h>
64 * next_request - gets the next request on the given list
65 * @list: the request list to operate on
68 * request available on @list.
70 static inline struct dwc3_request *next_request(struct list_head *list)
72 return list_first_entry_or_null(list, struct dwc3_request, list);
80 * current list to the endpoint's started_list.
87 list_move_tail(&req->list, &dep->started_list);
95 * current list to the endpoint's cancelled_list.
102 list_move_tail(&req->list, &dep->cancelled_list);