Lines Matching refs:le
112 struct Curl_llist_node *le; in Curl_hash_add2() local
129 for(le = Curl_llist_head(l); le; le = Curl_node_next(le)) { in Curl_hash_add2()
130 he = (struct Curl_hash_element *) Curl_node_elem(le); in Curl_hash_add2()
132 Curl_node_uremove(le, (void *)h); in Curl_hash_add2()
173 struct Curl_llist_node *le; in Curl_hash_delete() local
176 for(le = Curl_llist_head(l); le; le = Curl_node_next(le)) { in Curl_hash_delete()
177 struct Curl_hash_element *he = Curl_node_elem(le); in Curl_hash_delete()
179 Curl_node_uremove(le, (void *) h); in Curl_hash_delete()
198 struct Curl_llist_node *le; in Curl_hash_pick() local
202 for(le = Curl_llist_head(l); le; le = Curl_node_next(le)) { in Curl_hash_pick()
203 struct Curl_hash_element *he = Curl_node_elem(le); in Curl_hash_pick()
264 struct Curl_llist_node *le = in Curl_hash_clean_with_criterium() local
266 while(le) { in Curl_hash_clean_with_criterium()
267 struct Curl_hash_element *he = Curl_node_elem(le); in Curl_hash_clean_with_criterium()
268 struct Curl_llist_node *lnext = Curl_node_next(le); in Curl_hash_clean_with_criterium()
271 Curl_node_uremove(le, (void *) h); in Curl_hash_clean_with_criterium()
274 le = lnext; in Curl_hash_clean_with_criterium()