Lines Matching defs:item
38 struct curl_slist *item;
44 /* loop through to find the last item */
45 item = list;
46 while(item->next) {
47 item = item->next;
49 return item;
75 /* if this is the first item, then new_item *is* the list */
134 struct curl_slist *item;
139 item = list;
141 next = item->next;
142 Curl_safefree(item->data);
143 free(item);
144 item = next;