Searched refs:list_node (Results 1 – 10 of 10) sorted by relevance
172 #define CIRC_NODE_APPEND(free_node, list_node) \ argument174 (free_node)->next_bck = (list_node)->next_bck; \175 (free_node)->next_fwd = (list_node); \176 (list_node)->next_bck->next_fwd = (free_node); \177 (list_node)->next_bck = (free_node); \180 #define CIRC_NODE_INSERT(free_node, list_node) \ argument182 (free_node)->next_fwd = (list_node)->next_fwd; \183 (free_node)->next_bck = (list_node); \184 (list_node)->next_fwd->next_bck = (free_node); \185 (list_node)->next_fwd = (free_node); \
29 struct list_node slave_list_node;
156 struct list_node slave_list;
113 list_node pending_txn_list_ = LIST_INITIAL_VALUE(pending_txn_list_);118 list_node worker_txn_list_ = LIST_INITIAL_VALUE(worker_txn_list_);
31 struct list_node node;54 static struct list_node thread_list = LIST_INITIAL_VALUE(thread_list);148 struct list_node new_list = LIST_INITIAL_VALUE(new_list); in sort_threads()
15 typedef struct list_node list_node_t;17 struct list_node { struct
92 struct list_node node;
15 static struct list_node g_vc_list = LIST_INITIAL_VALUE(g_vc_list);
44 struct list_node node;47 static struct list_node display_list = LIST_INITIAL_VALUE(display_list);
64 struct list_node instance_list;78 struct list_node node;
Completed in 24 milliseconds