HomeSort by relevance Sort by last modified time
    Searched defs:optopt (Results 1 - 20 of 20) sorted by null

  /sdk/emulator/opengl/host/tools/emugen/
getopt.c 10 int optopt = 0; variable
35 optopt = '-';
38 optopt = arg[1];
43 char* oindex = strchr(ostr, optopt);
54 return optopt;
67 return optopt;
72 argv[0], optopt);
75 return optopt;
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/
tasm-options.c 105 char optbuf[100], optopt[100]; local
112 optopt[0] = 0;
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
yasm-options.c 163 char optbuf[100], optopt[100]; local
173 optopt[0] = 0;
185 sprintf(optopt, "--%s=<%s>", options[i].lopt,
188 strcat(optbuf, optopt);
199 sprintf(optopt, "--%s", options[i].lopt);
200 strcat(optbuf, optopt);
208 printf(" %-22s %s\n", optopt, gettext(options[i].description));
  /external/fio/lib/
getopt_long.c 20 int optind = 0, opterr = 0, optopt = 0; variable
162 optopt = opt;
  /external/libpcap/Win32/Src/
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/win32/Src/
getopt.c 44 optopt, /* character checked for validity */ variable
78 if ((optopt = (int)*place++) == (int)':' ||
79 !(oli = strchr(ostr, optopt))) {
84 if (optopt == (int)'-')
90 "%s: illegal option -- %c\n", program_name, optopt);
108 program_name, optopt);
116 return (optopt); /* dump back option letter */
  /external/bison/lib/
getopt_int.h 76 int optopt;
75 int optopt; member in struct:_getopt_data
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
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;
93 int optopt = '?'; variable
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
getopt_int.h 40 int optopt;
39 int optopt; member in struct:_getopt_data
getopt.in.h 44 # undef optopt macro
54 # define optopt __GETOPT_ID (optopt) macro
136 extern int optopt;
184 missing arguments, `optopt' is set to the option letter, and '?' is
getopt.c 97 int optopt = '?';
552 d->optopt = 0;
625 d->optopt = pfound->val;
664 d->optopt = pfound->val;
735 d->optopt = 0;
796 d->optopt = c;
847 d->optopt = c;
1069 d->optopt = c;
1101 optopt = getopt_data.optopt;
96 int optopt = '?'; variable
    [all...]
  /external/bison/darwin-lib/
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
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
getopt_long.c 75 int optopt = '?'; /* character checked for validity */ variable
269 optopt = 0;
283 * XXX: GNU sets optopt to val regardless of flag
286 optopt = long_options[match].val;
288 optopt = 0;
320 * XXX: GNU sets optopt to val regardless of flag
323 optopt = long_options[match].val;
325 optopt = 0;
340 optopt = 0;
524 optopt = optchar
    [all...]
  /external/chromium_org/third_party/mesa/src/src/getopt/
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 = optchar
    [all...]
  /external/mesa3d/src/getopt/
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 = optchar
    [all...]
  /ndk/sources/host-tools/make-3.81/
getopt.c 151 int optopt = '?'; variable
670 optopt = 0;
700 optopt = pfound->val;
715 optopt = pfound->val;
750 optopt = 0;
777 optopt = c;
807 optopt = c;
937 optopt = c;
  /external/wpa_supplicant_8/src/utils/
common.c 249 int optopt; variable
275 optopt = argv[optind][optchr];
276 cp = os_strchr(optstring, optopt);
277 if (cp == NULL || optopt == ':') {
  /external/ppp/pppd/
options.c 632 char *optopt = (opt->type == o_wild)? "": " option"; local
646 opt->name, optopt, mainopt->source);
653 opt->name, optopt, option_source);
658 opt->name, optopt);
663 opt->name, optopt);
667 option_error("%s%s is disabled", opt->name, optopt);
672 opt->name, optopt, option_source);
    [all...]
  /external/netperf/
netlib.c 273 optopt; /* character checked for validity */ variable
348 (NULL != program) ? program : "getopt", pch, optopt);
371 if ((optopt = (int)*place++) == (int)':'
372 || !(oli = strchr(ostr, optopt))) {
399 return optopt; /* return option letter */
    [all...]

Completed in 310 milliseconds