Lines Matching refs:anchor
36 __qdf_list_node_t anchor; member
50 INIT_LIST_HEAD(&list->anchor); in __qdf_list_create()
75 #define __QDF_LIST_ANCHOR(list) ((list).anchor)
84 { .anchor = __QDF_LIST_NODE_INIT(tail, head), }
90 __QDF_LIST_INIT_SINGLE(list.anchor)
93 list_for_each_entry(cursor, &(list_ptr)->anchor, node_field)
96 list_for_each_entry_safe(cursor, next, &(list_ptr)->anchor, node_field)
99 list_for_each_entry_from(cursor, &(list_ptr)->anchor, node_field)
102 list_for_each_entry_continue(cursor, &(list_ptr)->anchor, node_field)
105 list_first_entry_or_null(&(list_ptr)->anchor, type, node_field)
108 list_last_entry(&(list_ptr)->anchor, type, node_field)