Lines Matching refs:next

323  * The next section of code is a a collection of small routines that set
496 /* Returns: int - value of the next header or IPPROTO_NONE if error */
558 /* Returns: int - value of the next header or IPPROTO_NONE if error */
573 /* Returns: int - value of the next header or IPPROTO_NONE if error */
609 /* Returns: int - value of the next header or IPPROTO_NONE if error */
615 /* We don't know where the transport layer header (or whatever is next is), */
659 /* Returns: int - value of the next header or IPPROTO_NONE if error */
661 /* nextheader(I) - stores next header value */
1797 * IP addresses matched. The next 32bits contains:
3315 /* to where to add the next (last) group or where */
4637 * next or interface pointer in the comparison (fr_next, fr_ifa).
6537 /* next(O) - pointer to place to store the cookie for the */
6538 /* "next" tuneable, if it is desired. */
6543 /* the next one to be found may be returned inside next. */
6545 static ipftuneable_t *fr_findtunebycookie(cookie, next, ifs)
6546 void *cookie, **next;
6553 if (next != NULL) {
6555 * If the next entry in the array has a name
6557 * where to go next, else return a pointer to
6559 * next. This facilitates a weak linking of
6563 *next = ta + 1;
6565 *next = &ifs->ifs_ipf_tunelist;
6572 if (next != NULL)
6573 *next = &ta->ipft_next;
6577 if (next != NULL)
6578 *next = NULL;
6704 * pointer to the next one after it. The last entry in the
7252 /* the ipfobj_t structure to determine what should be the next rule to */
7254 /* find the 'next rule'. This may include searching rule group lists or */
7255 /* just be as simple as looking at the 'next' field in the rule structure. */
7264 frentry_t *fr, *next, zero;
7295 * Retrieve "previous" entry from token and find the next entry.
7307 next = ifs->ifs_ipacct
7310 next = ifs->ifs_ipacct6
7314 next = ifs->ifs_ipfilter
7317 next = ifs->ifs_ipfilter6
7324 next = fg->fg_start;
7326 next = NULL;
7329 next = fr->fr_next;
7342 if (next != NULL) {
7343 MUTEX_ENTER(&next->fr_lock);
7344 next->fr_ref++;
7345 MUTEX_EXIT(&next->fr_lock);
7346 t->ipt_data = next;
7349 next = &zero;
7361 error = COPYOUT(next, dst, sizeof(*next));
7370 if (next->fr_data != NULL) {
7371 dst += sizeof(*next);
7372 error = COPYOUT(next->fr_data, dst,
7373 next->fr_dsize);
7377 dst += next->fr_dsize;
7379 if (next->fr_next == NULL) {
7389 fr = next;
7390 next = fr->fr_next;
7407 /* the process doing the ioctl and use that to ask for the next rule. */