Home
last modified time | relevance | path

Searched refs:nonopt_end (Results 1 – 4 of 4) sorted by relevance

/external/openssh/openbsd-compat/
Dgetopt_long.c105 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/mesa3d/src/getopt/
Dgetopt_long.c88 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/llvm-project/lldb/source/Host/common/
DGetOptInc.cpp51 static int nonopt_end = -1; /* first option after non options (for permute) */ variable
255 nonopt_start = nonopt_end = -1; in getopt_internal()
261 if (nonopt_end != -1) { in getopt_internal()
263 permute_args(nonopt_start, nonopt_end, optind, nargv); in getopt_internal()
264 optind -= nonopt_end - nonopt_start; in getopt_internal()
272 nonopt_start = nonopt_end = -1; in getopt_internal()
296 else if (nonopt_end != -1) { in getopt_internal()
297 permute_args(nonopt_start, nonopt_end, optind, nargv); in getopt_internal()
298 nonopt_start = optind - (nonopt_end - nonopt_start); in getopt_internal()
299 nonopt_end = -1; in getopt_internal()
[all …]
/external/tcpdump/missing/
Dgetopt_long.c95 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 …]