Lines Matching refs:le
108 struct Curl_llist_element *le;
124 for(le = l->head; le; le = le->next) {
125 he = (struct Curl_hash_element *) le->ptr;
127 Curl_llist_remove(l, le, (void *)h);
150 struct Curl_llist_element *le;
158 for(le = l->head; le; le = le->next) {
159 struct Curl_hash_element *he = le->ptr;
161 Curl_llist_remove(l, le, (void *) h);
177 struct Curl_llist_element *le;
184 for(le = l->head; le; le = le->next) {
185 struct Curl_hash_element *he = le->ptr;
200 struct Curl_llist_element *le;
204 for(le = (h->table[i])->head;
205 le;
206 le = le->next) {
207 Curl_hash_element *el = le->ptr;
250 struct Curl_llist_element *le;
260 le = list->head; /* get first list entry */
261 while(le) {
262 struct Curl_hash_element *he = le->ptr;
263 lnext = le->next;
266 Curl_llist_remove(list, le, (void *) h);
269 le = lnext;