HomeSort by relevance Sort by last modified time
    Searched refs:nonopt_end (Results 1 - 5 of 5) sorted by null

  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
getopt_long.c 111 static int nonopt_end = -1; /* first option after non options (for permute) */ variable
150 * Exchange the block from nonopt_start to nonopt_end with the block
151 * from nonopt_end to opt_end (keeping the same order of arguments
389 nonopt_start = nonopt_end = -1;
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,
    [all...]
  /external/mesa3d/src/getopt/
getopt_long.c 88 static int nonopt_end = -1; /* first option after non options (for permute) */ variable
117 * Exchange the block from nonopt_start to nonopt_end with the block
118 * from nonopt_end to opt_end (keeping the same order of arguments
309 nonopt_start = nonopt_end = -1;
315 if (nonopt_end != -1) {
317 permute_args(nonopt_start, nonopt_end,
319 optind -= nonopt_end - nonopt_start;
328 nonopt_start = nonopt_end = -1;
352 else if (nonopt_end != -1) {
353 permute_args(nonopt_start, nonopt_end,
    [all...]
  /external/tcpdump/missing/
getopt_long.c 95 static int nonopt_end = -1; /* first option after non options (for permute) */ variable
134 * Exchange the block from nonopt_start to nonopt_end with the block
135 * from nonopt_end to opt_end (keeping the same order of arguments
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)
    [all...]
  /system/core/logcat/
getopt_long.cpp 84 // Exchange the block from nonopt_start to nonopt_end with the block from
85 // nonopt_end to opt_end (keeping the same order of arguments in each block).
86 // Returns optind - (nonopt_end - nonopt_start) for convenience.
89 int nnonopts = context->nonopt_end - context->nonopt_start;
90 int nopts = context->optind - context->nonopt_end;
95 int cstart = context->nonopt_end + i;
98 if (pos >= context->nonopt_end) {
108 return context->optind - (context->nonopt_end - context->nonopt_start);
259 if (context->optreset) context->nonopt_start = context->nonopt_end = -1;
265 if (context->nonopt_end != -1)
    [all...]
  /system/core/logcat/include/log/
getopt.h 45 int nonopt_end; member in struct:getopt_context

Completed in 98 milliseconds