Home
last modified time | relevance | path

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

/llvm-project/lldb/source/Host/common/
H A 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 …]