Lines Matching refs:ne
80 struct Curl_llist_node *ne) in Curl_llist_insert_next() argument
84 DEBUGASSERT(ne); in Curl_llist_insert_next()
87 ne->_init = NODEINIT; in Curl_llist_insert_next()
89 ne->_ptr = (void *) p; in Curl_llist_insert_next()
90 ne->_list = list; in Curl_llist_insert_next()
92 list->_head = ne; in Curl_llist_insert_next()
95 list->_tail = ne; in Curl_llist_insert_next()
99 ne->_next = e ? e->_next : list->_head; in Curl_llist_insert_next()
100 ne->_prev = e; in Curl_llist_insert_next()
102 list->_head->_prev = ne; in Curl_llist_insert_next()
103 list->_head = ne; in Curl_llist_insert_next()
106 e->_next->_prev = ne; in Curl_llist_insert_next()
109 list->_tail = ne; in Curl_llist_insert_next()
112 e->_next = ne; in Curl_llist_insert_next()
129 struct Curl_llist_node *ne) in Curl_llist_append() argument
133 DEBUGASSERT(ne); in Curl_llist_append()
134 Curl_llist_insert_next(list, list->_tail, p, ne); in Curl_llist_append()