Lines Matching refs:head
45 struct qdf_slist_node *head; member
62 (slist)->head, cursor, node_field)
71 for (cursor = __qdf_slist_item((slist)->head, cursor, node_field); \
86 cursor = __qdf_slist_item((slist)->head, cursor, node_field); \
100 slist->head = NULL; in qdf_slist_init()
111 QDF_BUG(!slist->head); in qdf_slist_deinit()
112 slist->head = __qdf_slist_poison; in qdf_slist_deinit()
123 return !slist->head; in qdf_slist_empty()
140 node->next = slist->head; in __qdf_slist_push()
141 slist->head = node; in __qdf_slist_push()
157 struct qdf_slist_node *node = slist->head; in __qdf_slist_pop()
162 slist->head = node->next; in __qdf_slist_pop()