/external/c-ares/ |
H A D | ares_getopt.h | 39 #undef optopt macro 45 #define optopt ares_optopt macro 51 extern int optopt;
|
H A D | ares_getopt.c | 53 int optopt = 0; /* character checked for validity */ variable 83 if ((optopt = (int)*place++) == (int)':' || 84 (oli = strchr(ostr, optopt)) == NULL) { 89 if (optopt == (int)'-') 95 "%s: illegal option -- %c\n", __FILE__, optopt); 113 __FILE__, optopt); 121 return (optopt); /* dump back option letter */
|
/external/libpcap/Win32/Src/ |
H A D | getopt.c | 44 optopt, /* character checked for validity */ variable 82 if ((optopt = (int)*place++) == (int)':' || 83 !(oli = strchr(ostr, optopt))) { 88 if (optopt == (int)'-') 94 "%s: illegal option -- %c\n", __progname, optopt); 112 __progname, optopt); 120 return (optopt); /* dump back option letter */
|
/external/tcpdump/ |
H A D | getopt_long.h | 64 extern int optind, opterr, optopt;
|
/external/mesa3d/src/getopt/ |
H A D | getopt.h | 73 extern int optopt;
|
H A D | getopt_long.c | 60 int optopt = '?'; /* character checked for validity */ variable 203 optopt = 0; 214 * XXX: GNU sets optopt to val regardless of flag 217 optopt = long_options[match].val; 219 optopt = 0; 244 * XXX: GNU sets optopt to val regardless of flag 247 optopt = long_options[match].val; 249 optopt = 0; 260 optopt = 0; 422 optopt [all...] |
/external/vboot_reference/cgpt/ |
H A D | cmd_boot.c | 71 Error("unrecognized option: -%c\n", optopt); 75 Error("missing argument to -%c\n", optopt);
|
H A D | cmd_create.c | 63 Error("unrecognized option: -%c\n", optopt); 67 Error("missing argument to -%c\n", optopt);
|
H A D | cmd_legacy.c | 54 Error("unrecognized option: -%c\n", optopt); 58 Error("missing argument to -%c\n", optopt);
|
H A D | cmd_repair.c | 54 Error("unrecognized option: -%c\n", optopt); 58 Error("missing argument to -%c\n", optopt);
|
H A D | cmd_prioritize.c | 89 Error("unrecognized option: -%c\n", optopt); 93 Error("missing argument to -%c\n", optopt);
|
H A D | cmd_show.c | 98 Error("unrecognized option: -%c\n", optopt); 102 Error("missing argument to -%c\n", optopt);
|
H A D | cmd_add.c | 158 Error("unrecognized option: -%c\n", optopt); 162 Error("missing argument to -%c\n", optopt);
|
H A D | cmd_find.c | 143 Error("unrecognized option: -%c\n", optopt); 147 Error("missing argument to -%c\n", optopt);
|
/external/bison/darwin-lib/ |
H A D | getopt.h | 64 # undef optopt macro 75 # define optopt __GETOPT_ID (optopt) macro 171 extern int optopt; 222 missing arguments, 'optopt' is set to the option letter, and '?' is
|
/external/bison/lib/ |
H A D | getopt.in.h | 63 # undef optopt macro 74 # define optopt __GETOPT_ID (optopt) macro 160 extern int optopt; 211 missing arguments, 'optopt' is set to the option letter, and '?' is
|
H A D | getopt_int.h | 76 int optopt; 75 int optopt; member in struct:_getopt_data
|
H A D | getopt.c | 94 int optopt = '?'; 594 d->optopt = 0; 674 d->optopt = pfound->val; 713 d->optopt = pfound->val; 784 d->optopt = 0; 832 d->optopt = c; 886 d->optopt = c; 1114 d->optopt = c; 1147 optopt = getopt_data.optopt; 93 int optopt = '?'; variable [all...] |
/external/tcpdump/missing/ |
H A D | getopt_long.c | 83 int optind, opterr = 1, optopt; variable 266 optopt = 0; 280 * XXX: GNU sets optopt to val regardless of flag 283 optopt = long_options[match].val; 285 optopt = 0; 317 * XXX: GNU sets optopt to val regardless of flag 320 optopt = long_options[match].val; 322 optopt = 0; 337 optopt = 0; 518 optopt [all...] |
/external/vboot_reference/futility/ |
H A D | cmd_pcr.c | 122 if (optopt) 124 optopt); 130 fprintf(stderr, "Missing argument to -%c\n", optopt);
|
H A D | cmd_load_fmap.c | 109 if (optopt) 111 optopt); 117 fprintf(stderr, "Missing argument to -%c\n", optopt);
|
H A D | cmd_create.c | 325 if (optopt) 327 optopt); 333 fprintf(stderr, "Missing argument to -%c\n", optopt);
|
H A D | futility.c | 326 if (optopt) 328 optopt); 335 fprintf(stderr, "Missing argument to -%c\n", optopt);
|
/external/e2fsprogs/include/nonunix/ |
H A D | getopt.h | 60 extern GETOPT_VARIABLE int optopt;
|
/external/fio/lib/ |
H A D | getopt_long.c | 20 int optind = 0, opterr = 0, optopt = 0; variable 162 optopt = opt;
|