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

  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
getopt_long.c 110 static int nonopt_start = -1; /* first non option argument (for permute) */ variable
150 * Exchange the block from nonopt_start to nonopt_end with the block
389 nonopt_start = nonopt_end = -1;
397 permute_args(nonopt_start, nonopt_end,
399 optind -= nonopt_end - nonopt_start;
401 else if (nonopt_start != -1) {
406 optind = nonopt_start;
408 nonopt_start = nonopt_end = -1;
434 if (nonopt_start == -1)
435 nonopt_start = optind
    [all...]
  /external/mesa3d/src/getopt/
getopt_long.c 87 static int nonopt_start = -1; /* first non option argument (for permute) */ variable
117 * Exchange the block from nonopt_start to nonopt_end with the block
309 nonopt_start = nonopt_end = -1;
317 permute_args(nonopt_start, nonopt_end,
319 optind -= nonopt_end - nonopt_start;
321 else if (nonopt_start != -1) {
326 optind = nonopt_start;
328 nonopt_start = nonopt_end = -1;
350 if (nonopt_start == -1)
351 nonopt_start = optind
    [all...]
  /external/tcpdump/missing/
getopt_long.c 94 static int nonopt_start = -1; /* first non option argument (for permute) */ variable
134 * Exchange the block from nonopt_start to nonopt_end with the block
397 permute_args(nonopt_start, nonopt_end,
399 optind -= nonopt_end - nonopt_start;
401 else if (nonopt_start != -1) {
406 optind = nonopt_start;
408 nonopt_start = nonopt_end = -1;
434 if (nonopt_start == -1)
435 nonopt_start = optind;
437 permute_args(nonopt_start, nonopt_end
    [all...]
  /system/core/logcat/
getopt_long.cpp 84 // Exchange the block from nonopt_start to nonopt_end with the block from
86 // Returns optind - (nonopt_end - nonopt_start) for convenience.
89 int nnonopts = context->nonopt_end - context->nonopt_start;
92 int cyclelen = (context->optind - context->nonopt_start) / ncycle;
108 return context->optind - (context->nonopt_end - context->nonopt_start);
259 if (context->optreset) context->nonopt_start = context->nonopt_end = -1;
268 } else if (context->nonopt_start != -1) {
270 context->optind = context->nonopt_start;
272 context->nonopt_start = context->nonopt_end = -1;
288 if (context->nonopt_start == -1)
    [all...]
  /system/core/logcat/include/log/
getopt.h 44 int nonopt_start; member in struct:getopt_context

Completed in 387 milliseconds