Searched refs:optopt (Results 1 - 25 of 140) sorted by relevance

123456

/opensolaris-onvv-gate/usr/src/lib/libc/port/gen/
H A Dopt_data.c41 int optopt = 0; variable
H A Dgetopt_long.c367 optopt = 0;
382 * XXX: GNU sets optopt to val regardless of flag
385 optopt = long_options[match].val;
387 optopt = 0;
415 * XXX: GNU sets optopt to val regardless of flag
418 optopt = long_options[match].val;
420 optopt = 0;
434 optopt = 0;
443 optopt = long_options[match].val;
444 return (optopt);
[all...]
H A Dgetopt.c223 * For an unrecognized long-option, optopt will equal 0, but
227 optopt = c = (unsigned char)argv[optind][_sp];
236 * Note: When the long option is unrecognized, optopt
245 optopt = c = *cp;
/opensolaris-onvv-gate/usr/src/lib/libast/common/include/
H A Dast_getopt.h36 extern int optopt;
/opensolaris-onvv-gate/usr/src/lib/libbc/libc/gen/common/
H A Dgetopt.c38 int optopt; /* character checked for validity */ variable
62 if ((optopt = (int)*place++) == (int)':' ||
63 !(oli = strchr(ostr, optopt))) {
69 if (optopt == (int)'-')
79 p, optopt);
99 p, optopt);
106 return (optopt); /* dump back option letter */
/opensolaris-onvv-gate/usr/src/cmd/lvm/metassist/controller/
H A Dgetopt_ext.c84 * <optopt>
138 if (optopt != '?') {
139 if (strchr(optstring, optopt) == NULL) {
/opensolaris-onvv-gate/usr/src/grub/grub-0.97/grub/
H A Dmapfile-intf53 optopt { FLAGS = INTERPOSE };
/opensolaris-onvv-gate/usr/src/head/
H A Dgetopt.h65 extern int optopt;
/opensolaris-onvv-gate/usr/src/lib/libast/amd64/include/ast/
H A Dast_getopt.h19 extern __MANGLE__ int optopt;
/opensolaris-onvv-gate/usr/src/lib/libast/i386/include/ast/
H A Dast_getopt.h19 extern __MANGLE__ int optopt;
/opensolaris-onvv-gate/usr/src/lib/libast/sparc/include/ast/
H A Dast_getopt.h19 extern __MANGLE__ int optopt;
/opensolaris-onvv-gate/usr/src/lib/libast/sparcv9/include/ast/
H A Dast_getopt.h19 extern __MANGLE__ int optopt;
/opensolaris-onvv-gate/usr/src/lib/libast/common/comp/
H A Dgetopt.c41 int optopt = 0;
67 optopt = opt_info.option[1];
/opensolaris-onvv-gate/usr/src/cmd/mdb/common/libstand/
H A Dgetopt.c33 int opterr = 1, optind = 1, optopt = 0; variable
44 optopt = 0;
64 optopt = c = (unsigned char)argv[optind][_sp];
/opensolaris-onvv-gate/usr/src/grub/grub-0.97/lib/
H A Dgetopt.h58 extern int optopt;
H A Dgetopt.c157 int optopt = '?';
688 optopt = 0;
719 optopt = pfound->val;
734 optopt = pfound->val;
769 optopt = 0;
796 optopt = c;
826 optopt = c;
956 optopt = c;
156 int optopt = '?'; variable
/opensolaris-onvv-gate/usr/src/cmd/bnu/
H A Dgetopt.c44 int optopt; variable
64 optopt = c = argv[optind][sp];
/opensolaris-onvv-gate/usr/src/cmd/sendmail/libsm/
H A Dtest.c27 extern int optopt;
90 optopt);
/opensolaris-onvv-gate/usr/src/cmd/lp/cmd/
H A Dlpusers.c66 extern int optind, opterr, optopt, errno;
130 if (optopt == '?') goto usage;
131 (p = "-X")[1] = optopt;
132 if (strchr("ldqu", optopt))
/opensolaris-onvv-gate/usr/src/lib/libparted/common/lib/
H A Dgetopt_int.h41 int optopt;
40 int optopt; member in struct:_getopt_data
/opensolaris-onvv-gate/usr/src/cmd/ndmpadm/
H A Dndmpadm_main.c236 "requires an operand\n"), optopt);
240 "option: -%c\n"), optopt);
302 "requires an operand\n"), optopt);
306 "option: -%c\n"), optopt);
443 "'%c' option\n"), optopt);
448 gettext("Invalid option '%c'\n"), optopt);
578 "requires an operand\n"), optopt);
583 "option: -%c\n"), optopt);
667 "requires an operand\n"), optopt);
671 "option: -%c\n"), optopt);
[all...]
/opensolaris-onvv-gate/usr/src/cmd/prtdscp/sparc/sun4u/
H A Dprtdscp.c113 extern int optopt;
169 err(gettext("invalid option -%c"), optopt);
/opensolaris-onvv-gate/usr/src/cmd/svr4pkg/pkgadm/
H A Dmain.c135 opterr = optind = 1; optopt = 0;
149 opterr = optind = 1; optopt = 0;
/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/cmd/jdtrace/
H A DGetopt.java50 private int optopt = 0; field in class:Getopt
283 return optopt;
367 * For an unrecognized long-option, optopt will equal 0, but
371 optopt = c = args[optind].charAt(_sp);
381 * Note: When the long option is unrecognized, optopt will
390 optopt = c = optstring.charAt(cp);
/opensolaris-onvv-gate/usr/src/cmd/acpihpd/
H A Dacpihpd.c96 "missed argument for option %c.", optopt);
100 syslog(LOG_ERR, "unrecognized option %c.", optopt);

Completed in 122 milliseconds

123456