Lines Matching refs:next
348 list = list->next;
376 * the past. If the cookiejar has recorded the next timestamp at which one or
390 * counter in order to track the next one. In case the recorded first
404 nx = co->next;
407 cookies->cookies[i] = co->next;
410 pv->next = co->next;
418 * seen so far then record it for the next round of expirations.
1138 clist = clist->next;
1143 co->next = clist->next; /* get the next-pointer first */
1171 lastc->next = co;
1179 * tracker in case it is the next one to expire.
1434 /* then modify our next */
1435 newco->next = mainco;
1452 co = co->next;
1471 for(i = 0; co; co = co->next)
1481 array[i]->next = array[i + 1];
1482 array[matches-1]->next = NULL; /* terminate the list */
1519 struct Cookie *next;
1521 next = co->next;
1523 co = next;
1534 struct Cookie *first, *curr, *next, *prev = NULL;
1546 for(; curr; curr = next) {
1547 next = curr->next;
1550 first = next;
1553 prev = next;
1555 prev->next = next;
1669 for(co = c->cookies[i]; co; co = co->next) {
1729 for(c = data->cookies->cookies[i]; c; c = c->next) {