Home | History | Annotate | Download | only in lib

Lines Matching refs:le

137   struct curl_llist_element *le;
140 for(le = l->head; le; le = le->next) {
141 he = (struct curl_hash_element *) le->ptr;
143 Curl_llist_remove(l, le, (void *)h);
175 struct curl_llist_element *le;
179 for(le = l->head; le; le = le->next) {
180 he = le->ptr;
182 Curl_llist_remove(l, le, (void *) h);
197 struct curl_llist_element *le;
203 for(le = l->head; le; le = le->next) {
204 he = le->ptr;
219 struct curl_llist_element *le;
223 for(le = (h->table[i])->head;
224 le;
225 le = le->next) {
226 curl_hash_element *el = le->ptr;
270 struct curl_llist_element *le;
280 le = list->head; /* get first list entry */
281 while(le) {
282 struct curl_hash_element *he = le->ptr;
283 lnext = le->next;
286 Curl_llist_remove(list, le, (void *) h);
289 le = lnext;