Lines Matching defs:list
59 For a given host and path, return a linked list of cookies that
333 struct curl_slist *list = data->state.cookielist;
334 if(list) {
336 while(list) {
338 Curl_cookie_init(data, list->data, data->cookies,
345 infof(data, "ignoring failed cookie_init for %s", list->data);
348 list = list->next;
1378 * For a given host and path, return a linked list of cookies that the client
1429 * entry for the return-linked-list
1477 /* remake the linked list order according to the new order */
1482 array[matches-1]->next = NULL; /* terminate the list */
1487 return mainco; /* return the new list */
1515 * Free a list of cookies previously returned by Curl_cookie_getlist();
1530 * Free all session cookies in the cookies list.
1719 struct curl_slist *list = NULL;
1734 curl_slist_free_all(list);
1737 beg = Curl_slist_append_nodup(list, line);
1740 curl_slist_free_all(list);
1743 list = beg;
1747 return list;
1752 struct curl_slist *list;
1754 list = cookie_list(data);
1756 return list;