Searched refs:opt_index (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/cvs/lib/
H A Dgetopt1.c63 getopt_long (argc, argv, options, long_options, opt_index)
68 int *opt_index;
70 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
79 getopt_long_only (argc, argv, options, long_options, opt_index)
84 int *opt_index;
86 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dgetopt1.c71 const struct option *long_options, int *opt_index)
73 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
83 const struct option *long_options, int *opt_index)
85 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
69 getopt_long(int argc, char *const *argv, const char *options, const struct option *long_options, int *opt_index) argument
81 getopt_long_only(int argc, char *const *argv, const char *options, const struct option *long_options, int *opt_index) argument
/freebsd-9.3-release/contrib/gcc/
H A Dopts-common.c139 size_t opt_index; local
147 opt_index = find_opt (opt + 1, -1);
148 if (opt_index == cl_options_count
163 opt_index = find_opt (opt + 1, -1);
167 if (opt_index == cl_options_count)
174 option = &cl_options[opt_index];
187 options [i] = (int) opt_index;
H A Dopts.c464 size_t opt_index; local
473 opt_index = find_opt (opt + 1, lang_mask | CL_COMMON | CL_TARGET);
474 if (opt_index == cl_options_count
487 opt_index = find_opt (opt + 1, lang_mask | CL_COMMON | CL_TARGET);
490 if (opt_index == cl_options_count)
493 option = &cl_options[opt_index];
517 arg = argv[0] + cl_options[opt_index].opt_len + 1;
549 if (!lang_hooks.missing_argument (opt, opt_index))
595 if (lang_hooks.handle_option (opt_index, arg, value) == 0)
599 if (common_handle_option (opt_index, ar
[all...]

Completed in 61 milliseconds