Lines Matching refs:Cookie
104 static void freecookie(struct Cookie *co) in freecookie()
379 struct Cookie *co, *nx; in remove_expired()
384 struct Cookie *pv = NULL; in remove_expired()
425 struct Cookie *
441 struct Cookie *clist; in Curl_cookie_add()
442 struct Cookie *co; in Curl_cookie_add()
443 struct Cookie *lastc = NULL; in Curl_cookie_add()
454 co = calloc(1, sizeof(struct Cookie)); in Curl_cookie_add()
1212 struct Cookie *c1 = *(struct Cookie **)p1; in cookie_sort()
1213 struct Cookie *c2 = *(struct Cookie **)p2; in cookie_sort()
1244 struct Cookie *c1 = *(struct Cookie **)p1; in cookie_sort_ct()
1245 struct Cookie *c2 = *(struct Cookie **)p2; in cookie_sort_ct()
1259 static struct Cookie *dup_cookie(struct Cookie *src) in dup_cookie()
1261 struct Cookie *d = calloc(sizeof(struct Cookie), 1); in dup_cookie()
1297 struct Cookie *Curl_cookie_getlist(struct CookieInfo *c, in Curl_cookie_getlist()
1301 struct Cookie *newco; in Curl_cookie_getlist()
1302 struct Cookie *co; in Curl_cookie_getlist()
1303 struct Cookie *mainco = NULL; in Curl_cookie_getlist()
1359 struct Cookie **array; in Curl_cookie_getlist()
1363 array = malloc(sizeof(struct Cookie *) * matches); in Curl_cookie_getlist()
1373 qsort(array, matches, sizeof(struct Cookie *), cookie_sort); in Curl_cookie_getlist()
1420 void Curl_cookie_freelist(struct Cookie *co) in Curl_cookie_freelist()
1422 struct Cookie *next; in Curl_cookie_freelist()
1440 struct Cookie *first, *curr, *next, *prev = NULL; in Curl_cookie_clearsess()
1499 static char *get_netscape_format(const struct Cookie *co) in get_netscape_format()
1533 struct Cookie *co; in cookie_output()
1539 struct Cookie **array; in cookie_output()
1566 array = malloc(sizeof(struct Cookie *) * c->numcookies); in cookie_output()
1582 qsort(array, c->numcookies, sizeof(struct Cookie *), cookie_sort_ct); in cookie_output()
1609 struct Cookie *c; in cookie_list()