Searched defs:next_opt (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libnsl/nsl/
H A Dt_optmgmt.c73 struct t_opthdr *opt, *next_opt; local
167 for (opt = opt_start; opt < opt_end; opt = next_opt) {
179 * 'next_opt' the next_opt computation above below
187 * (only reason 'next_opt' should equal or exceed
195 next_opt = (struct t_opthdr *)((uchar_t *)opt +
198 if ((uchar_t *)next_opt < (uchar_t *)opt || /* (1) */
199 ((next_opt >= opt_end) &&
200 (((uchar_t *)next_opt - (uchar_t *)opt_end) >=
212 if (next_opt < opt_en
[all...]
/illumos-gate/usr/src/lib/libwrap/
H A Doptions.c146 char *next_opt; local
150 for (curr_opt = get_field(options); curr_opt; curr_opt = next_opt) {
151 next_opt = get_field((char *) 0);
191 if (next_opt && use_last(op))
/illumos-gate/usr/src/uts/common/inet/
H A Doptcom.c191 struct opthdr *next_opt; local
339 for (opt = opt_start; opt < opt_end; opt = next_opt) {
348 * We now compute pointer to next option in buffer 'next_opt'
349 * The next_opt computation above below 'opt->len' initialized
355 * (only reason 'next_opt' should equal or exceed
359 next_opt = (struct opthdr *)((uchar_t *)&opt[1] +
362 if ((uchar_t *)next_opt < (uchar_t *)&opt[1] ||
363 ((next_opt >= opt_end) &&
364 (((uchar_t *)next_opt - (uchar_t *)opt_end) >=
420 for (opt = opt_start; opt < opt_end; opt = next_opt) {
[all...]

Completed in 68 milliseconds