Symbol: nextarg
bin/ps/ps.c
1436
kludge_oldps_options(const char *optlist, char *origval, const char *nextarg)
bin/ps/ps.c
1474
if (nextarg == NULL || *nextarg == '-' || isdigitch(*nextarg))
lib/libc/stdio/printf-pos.c
119
if (types->nextarg >= types->tablesize) {
lib/libc/stdio/printf-pos.c
123
if (types->nextarg > types->tablemax)
lib/libc/stdio/printf-pos.c
124
types->tablemax = types->nextarg;
lib/libc/stdio/printf-pos.c
138
types->table[types->nextarg++] = type;
lib/libc/stdio/printf-pos.c
149
types->table[types->nextarg++] = T_INTMAXT;
lib/libc/stdio/printf-pos.c
151
types->table[types->nextarg++] = T_SSIZET;
lib/libc/stdio/printf-pos.c
153
types->table[types->nextarg++] = T_PTRDIFFT;
lib/libc/stdio/printf-pos.c
155
types->table[types->nextarg++] = T_LLONG;
lib/libc/stdio/printf-pos.c
157
types->table[types->nextarg++] = T_LONG;
lib/libc/stdio/printf-pos.c
159
types->table[types->nextarg++] = T_INT;
lib/libc/stdio/printf-pos.c
170
types->table[types->nextarg++] = T_UINTMAXT;
lib/libc/stdio/printf-pos.c
172
types->table[types->nextarg++] = T_SIZET;
lib/libc/stdio/printf-pos.c
174
types->table[types->nextarg++] = T_SIZET;
lib/libc/stdio/printf-pos.c
176
types->table[types->nextarg++] = T_U_LLONG;
lib/libc/stdio/printf-pos.c
178
types->table[types->nextarg++] = T_U_LONG;
lib/libc/stdio/printf-pos.c
180
types->table[types->nextarg++] = T_U_INT;
lib/libc/stdio/printf-pos.c
200
u_int hold = types->nextarg;
lib/libc/stdio/printf-pos.c
201
types->nextarg = n2;
lib/libc/stdio/printf-pos.c
204
types->nextarg = hold;
lib/libc/stdio/printf-pos.c
226
u_int hold = types->nextarg;
lib/libc/stdio/printf-pos.c
227
types->nextarg = n2;
lib/libc/stdio/printf-pos.c
230
types->nextarg = hold;
lib/libc/stdio/printf-pos.c
310
types.nextarg = n;
lib/libc/stdio/printf-pos.c
499
types.nextarg = n;
lib/libc/stdio/printf-pos.c
635
if (types->nextarg > NL_ARGMAX)
lib/libc/stdio/printf-pos.c
639
if (newsize < types->nextarg + 1)
lib/libc/stdio/printf-pos.c
640
newsize = types->nextarg + 1;
lib/libc/stdio/printf-pos.c
78
u_int nextarg; /* 1-based argument index */
lib/libc/stdio/printf-pos.c
95
types->nextarg = 1;
lib/libc/stdio/vfprintf.c
358
int nextarg; /* 1-based argument index */
lib/libc/stdio/vfprintf.c
390
((argtable != NULL) ? *((type*)(&argtable[nextarg++])) : \
lib/libc/stdio/vfprintf.c
391
(nextarg++, va_arg(ap, type)))
lib/libc/stdio/vfprintf.c
431
int hold = nextarg; \
lib/libc/stdio/vfprintf.c
439
nextarg = n2; \
lib/libc/stdio/vfprintf.c
441
nextarg = hold; \
lib/libc/stdio/vfprintf.c
462
nextarg = 1;
lib/libc/stdio/vfprintf.c
560
nextarg = n;
lib/libc/stdio/vfwprintf.c
432
int nextarg; /* 1-based argument index */
lib/libc/stdio/vfwprintf.c
464
((argtable != NULL) ? *((type*)(&argtable[nextarg++])) : \
lib/libc/stdio/vfwprintf.c
465
(nextarg++, va_arg(ap, type)))
lib/libc/stdio/vfwprintf.c
505
int hold = nextarg; \
lib/libc/stdio/vfwprintf.c
513
nextarg = n2; \
lib/libc/stdio/vfwprintf.c
515
nextarg = hold; \
lib/libc/stdio/vfwprintf.c
534
nextarg = 1;
lib/libc/stdio/vfwprintf.c
629
nextarg = n;
lib/libc/stdio/xprintf.c
271
int nextarg;
lib/libc/stdio/xprintf.c
282
nextarg = 1;
lib/libc/stdio/xprintf.c
320
pi->get_prec = nextarg;
lib/libc/stdio/xprintf.c
321
argt[nextarg++] = PA_INT;
lib/libc/stdio/xprintf.c
340
pi->get_width = nextarg;
lib/libc/stdio/xprintf.c
341
argt[nextarg++] = PA_INT;
lib/libc/stdio/xprintf.c
369
if (nextarg > maxarg)
lib/libc/stdio/xprintf.c
370
maxarg = nextarg;
lib/libc/stdio/xprintf.c
371
nextarg = n;
lib/libc/stdio/xprintf.c
438
pi, __PRINTFMAXARG, &argt[nextarg]);
lib/libc/stdio/xprintf.c
440
pi->arg[0] = &args[nextarg];
lib/libc/stdio/xprintf.c
442
pi->arg[1] = &args[nextarg + 1];
lib/libc/stdio/xprintf.c
443
nextarg += ch;
lib/libc/stdio/xprintf.c
447
if (nextarg > maxarg)
lib/libc/stdio/xprintf.c
448
maxarg = nextarg;
sbin/restore/interactive.c
113
nextarg = NULL;
sbin/restore/interactive.c
308
if (nextarg != NULL)
sbin/restore/interactive.c
337
nextarg = cp;
sbin/restore/interactive.c
342
cp = copynext(nextarg, rawname);
sbin/restore/interactive.c
344
nextarg = NULL;
sbin/restore/interactive.c
346
nextarg = cp;
sbin/restore/interactive.c
56
static char *nextarg = NULL;
sys/security/audit/bsm_token.c
1337
const char *nextarg;
sys/security/audit/bsm_token.c
1341
nextarg = *argv;
sys/security/audit/bsm_token.c
1343
while (nextarg != NULL) {
sys/security/audit/bsm_token.c
1346
nextlen = strlen(nextarg);
sys/security/audit/bsm_token.c
1349
nextarg = *(argv + count);
sys/security/audit/bsm_token.c
1358
nextarg = *(argv + i);
sys/security/audit/bsm_token.c
1359
ADD_MEM(dptr, nextarg, strlen(nextarg) + 1);
usr.bin/env/envopts.c
167
char *dest, **newargv, *newstr, **nextarg, **oldarg;
usr.bin/env/envopts.c
187
nextarg = newargv;
usr.bin/env/envopts.c
188
*nextarg++ = **origv;
usr.bin/env/envopts.c
217
bq_destlen = dest - *(nextarg - 1);
usr.bin/env/envopts.c
225
copystr = expand_vars(in_arg, (nextarg - 1),
usr.bin/env/envopts.c
242
bq_destlen = dest - *(nextarg - 1);
usr.bin/env/envopts.c
337
*nextarg++ = dest;
usr.bin/env/envopts.c
356
*nextarg = NULL;
usr.bin/env/envopts.c
359
bq_destlen, *(nextarg - 1), bq_src);
usr.bin/env/envopts.c
371
*nextarg++ = *oldarg;
usr.bin/env/envopts.c
372
*nextarg = NULL;
usr.bin/find/function.c
1042
gname = nextarg(option, argvp);
usr.bin/find/function.c
1098
inum_str = nextarg(option, argvp);
usr.bin/find/function.c
1121
fn = nextarg(option, argvp);
usr.bin/find/function.c
1152
nlinks = nextarg(option, argvp);
usr.bin/find/function.c
1222
pattern = nextarg(option, argvp);
usr.bin/find/function.c
1263
fn_or_tspec = nextarg(option, argvp);
usr.bin/find/function.c
1380
perm = nextarg(option, argvp);
usr.bin/find/function.c
1464
new->c_data = nextarg(option, argvp);
usr.bin/find/function.c
1535
pattern = nextarg(option, argvp);
usr.bin/find/function.c
1588
size_str = nextarg(option, argvp);
usr.bin/find/function.c
1677
typestring = nextarg(option, argvp);
usr.bin/find/function.c
1739
username = nextarg(option, argvp);
usr.bin/find/function.c
276
nmins = nextarg(option, argvp);
usr.bin/find/function.c
325
value = nextarg(option, argvp);
usr.bin/find/function.c
351
dstr = nextarg(option, argvp);
usr.bin/find/function.c
545
ndepth = nextarg(option, argvp);
usr.bin/find/function.c
67
static char *nextarg(OPTION *, char ***);
usr.bin/find/function.c
837
flags_str = nextarg(option, argvp);
usr.bin/find/function.c
895
fn = nextarg(option, argvp);
usr.bin/find/function.c
994
fsname = nextarg(option, argvp);
usr.bin/rpcgen/rpc_main.c
1186
goto nextarg;
usr.bin/rpcgen/rpc_main.c
1198
goto nextarg;
usr.bin/rpcgen/rpc_main.c
1216
goto nextarg;
usr.bin/rpcgen/rpc_main.c
1222
goto nextarg;
usr.bin/rpcgen/rpc_main.c
1236
goto nextarg;
usr.bin/rpcgen/rpc_main.c
1244
nextarg:
usr.sbin/kbdcontrol/kbdcontrol.c
121
static char * nextarg(int ac, char **av, int *indp, int oc);
usr.sbin/kbdcontrol/kbdcontrol.c
1326
nextarg(argc, argv, &optind, 'f'));
usr.sbin/vidcontrol/vidcontrol.c
1468
optarg = nextarg(argc, argv, &optind, 'f', 0);
usr.sbin/vidcontrol/vidcontrol.c
1470
font = nextarg(argc, argv, &optind, 'f', 0);