Lines Matching refs:_head
58 l->_head = NULL; in Curl_llist_init()
92 list->_head = ne; in Curl_llist_insert_next()
93 list->_head->_prev = NULL; in Curl_llist_insert_next()
94 list->_head->_next = NULL; in Curl_llist_insert_next()
99 ne->_next = e ? e->_next : list->_head; in Curl_llist_insert_next()
102 list->_head->_prev = ne; in Curl_llist_insert_next()
103 list->_head = ne; in Curl_llist_insert_next()
153 if(e == list->_head) { in Curl_node_uremove()
154 list->_head = e->_next; in Curl_node_uremove()
156 if(!list->_head) in Curl_node_uremove()
209 return VERIFYNODE(list->_head); in Curl_llist_head()