Lines Matching refs:n
389 struct Curl_llist_node *n; in remove_expired() local
392 for(n = Curl_llist_head(&ci->cookielist[i]); n; n = e) { in remove_expired()
393 co = Curl_node_elem(n); in remove_expired()
394 e = Curl_node_next(n); in remove_expired()
396 Curl_node_remove(n); in remove_expired()
990 struct Curl_llist_node *n; in replace_existing() local
992 for(n = Curl_llist_head(&ci->cookielist[myhash]); n; n = Curl_node_next(n)) { in replace_existing()
993 struct Cookie *clist = Curl_node_elem(n); in replace_existing()
1066 replace_n = n; in replace_existing()
1359 struct Curl_llist_node *n; in Curl_cookie_getlist() local
1372 for(n = Curl_llist_head(&ci->cookielist[myhash]); in Curl_cookie_getlist()
1373 n; n = Curl_node_next(n)) { in Curl_cookie_getlist()
1374 struct Cookie *co = Curl_node_elem(n); in Curl_cookie_getlist()
1424 n = Curl_llist_head(list); in Curl_cookie_getlist()
1426 for(i = 0; n; n = Curl_node_next(n)) in Curl_cookie_getlist()
1427 array[i++] = Curl_node_elem(n); in Curl_cookie_getlist()
1459 struct Curl_llist_node *n; in Curl_cookie_clearall() local
1460 for(n = Curl_llist_head(&ci->cookielist[i]); n;) { in Curl_cookie_clearall()
1461 struct Cookie *c = Curl_node_elem(n); in Curl_cookie_clearall()
1462 struct Curl_llist_node *e = Curl_node_next(n); in Curl_cookie_clearall()
1463 Curl_node_remove(n); in Curl_cookie_clearall()
1465 n = e; in Curl_cookie_clearall()
1485 struct Curl_llist_node *n = Curl_llist_head(&ci->cookielist[i]); in Curl_cookie_clearsess() local
1488 for(; n; n = e) { in Curl_cookie_clearsess()
1489 struct Cookie *curr = Curl_node_elem(n); in Curl_cookie_clearsess()
1490 e = Curl_node_next(n); /* in case the node is removed, get it early */ in Curl_cookie_clearsess()
1492 Curl_node_remove(n); in Curl_cookie_clearsess()
1590 struct Curl_llist_node *n; in cookie_output() local
1600 for(n = Curl_llist_head(&ci->cookielist[i]); n; in cookie_output()
1601 n = Curl_node_next(n)) { in cookie_output()
1602 struct Cookie *co = Curl_node_elem(n); in cookie_output()
1655 struct Curl_llist_node *n; in cookie_list() local
1661 for(n = Curl_llist_head(&data->cookies->cookielist[i]); n; in cookie_list()
1662 n = Curl_node_next(n)) { in cookie_list()
1663 struct Cookie *c = Curl_node_elem(n); in cookie_list()