Home
last modified time | relevance | path

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

/external/flac/src/share/getopt/
Dgetopt.c143 int share__optind = 1; variable
320 int top = share__optind;
390 first_nonopt += (share__optind - last_nonopt);
391 last_nonopt = share__optind;
409 first_nonopt = last_nonopt = share__optind;
534 if (share__optind == 0 || !share____getopt_initialized)
536 if (share__optind == 0)
537 share__optind = 1; /* Don't scan ARGV[0], the program name. */
547 # define NONOPTION_P (argv[share__optind][0] != '-' || argv[share__optind][1] == '\0' \
548 || (share__optind < nonoption_flags_len \
[all …]
Dgetopt1.c126 int this_option_optind = share__optind ? share__optind : 1;
193 if (share__optind < argc)
196 while (share__optind < argc)
197 printf ("%s ", argv[share__optind++]);
/external/flac/include/share/
Dgetopt.h65 extern int share__optind;
/external/flac/src/metaflac/
Doptions.c180 options->prefix_with_filename = (argc - share__optind > 1); in parse_options()
182 if(share__optind >= argc && !options->show_long_help && !options->show_version) { in parse_options()
188 options->num_files = argc - share__optind; in parse_options()
194 while(share__optind < argc) in parse_options()
195 options->filenames[i++] = local_strdup(argv[share__optind++]); in parse_options()
/external/flac/src/flac/
Dmain.c642 FLAC__ASSERT(share__optind <= argc); in parse_options()
644 option_values.num_files = argc - share__optind; in parse_options()
650 while(share__optind < argc) in parse_options()
651 option_values.filenames[i++] = local_strdup(argv[share__optind++]); in parse_options()