Searched refs:nonopt_end (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/src/getopt/ |
D | getopt_long.c | 88 static int nonopt_end = -1; /* first option after non options (for permute) */ variable 309 nonopt_start = nonopt_end = -1; in getopt_internal() 315 if (nonopt_end != -1) { in getopt_internal() 317 permute_args(nonopt_start, nonopt_end, in getopt_internal() 319 optind -= nonopt_end - nonopt_start; in getopt_internal() 328 nonopt_start = nonopt_end = -1; in getopt_internal() 352 else if (nonopt_end != -1) { in getopt_internal() 353 permute_args(nonopt_start, nonopt_end, in getopt_internal() 356 (nonopt_end - nonopt_start); in getopt_internal() 357 nonopt_end = -1; in getopt_internal() [all …]
|
/external/openssh/openbsd-compat/ |
D | getopt_long.c | 105 static int nonopt_end = -1; /* first option after non options (for permute) */ variable 326 nonopt_start = nonopt_end = -1; in getopt_internal() 332 if (nonopt_end != -1) { in getopt_internal() 334 permute_args(nonopt_start, nonopt_end, in getopt_internal() 336 optind -= nonopt_end - nonopt_start; in getopt_internal() 345 nonopt_start = nonopt_end = -1; in getopt_internal() 369 else if (nonopt_end != -1) { in getopt_internal() 370 permute_args(nonopt_start, nonopt_end, in getopt_internal() 373 (nonopt_end - nonopt_start); in getopt_internal() 374 nonopt_end = -1; in getopt_internal() [all …]
|
/external/tcpdump/missing/ |
D | getopt_long.c | 95 static int nonopt_end = -1; /* first option after non options (for permute) */ variable 395 if (nonopt_end != -1) { 397 permute_args(nonopt_start, nonopt_end, 399 optind -= nonopt_end - nonopt_start; 408 nonopt_start = nonopt_end = -1; 436 else if (nonopt_end != -1) { 437 permute_args(nonopt_start, nonopt_end, 440 (nonopt_end - nonopt_start); 441 nonopt_end = -1; 447 if (nonopt_start != -1 && nonopt_end == -1) [all …]
|