Home
last modified time | relevance | path

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

/ndk/sources/host-tools/make-3.81/
Dgetopt1.c70 const struct option *long_options, int *opt_index) in getopt_long() argument
72 return _getopt_internal (argc, argv, options, long_options, opt_index, 0); in getopt_long()
82 const struct option *long_options, int *opt_index) in getopt_long_only() argument
84 return _getopt_internal (argc, argv, options, long_options, opt_index, 1); in getopt_long_only()
104 static struct option long_options[] = in main() local
116 long_options, &option_index); in main()
123 printf ("option %s", long_options[option_index].name); in main()
Dmain.c2235 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) + variable
2259 long_options[i].name = (switches[i].long_name == 0 ? "" : in init_switches()
2261 long_options[i].flag = 0; in init_switches()
2262 long_options[i].val = switches[i].c; in init_switches()
2270 long_options[i].has_arg = no_argument; in init_switches()
2282 long_options[i].has_arg = optional_argument; in init_switches()
2285 long_options[i].has_arg = required_argument; in init_switches()
2293 long_options[i++] = long_option_aliases[c]; in init_switches()
2294 long_options[i].name = 0; in init_switches()
2422 c = getopt_long (argc, argv, options, long_options, (int *) 0); in decode_switches()
/ndk/sources/host-tools/ndk-stack/binutils/
Daddr2line.c54 static struct option long_options[] = variable
421 while ((c = getopt_long (argc, argv, "ab:Ce:sfHhij:pVv", long_options, (int *) 0)) in addr2line_main()