Searched refs:optarg (Results 1 - 25 of 883) sorted by relevance

1234567891011>>

/macosx-10.9.5/patch_cmds-17/diffstat/porting/
H A Dgetopt.h1 extern char *optarg;
/macosx-10.9.5/xnu-2422.115.4/tools/tests/libMicro/
H A Dbenchmark_optswitch.c43 benchmark_optswitch(int opt, char *optarg) argument
/macosx-10.9.5/apache-786.1/httpd/srclib/pcre/
H A Dpcre-config.in24 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
25 *) optarg= ;;
30 prefix=$optarg
32 exec_prefix=$optarg
39 exec_prefix=$optarg
/macosx-10.9.5/dcerpc-58/dcerpc/demos/access/
H A Dgetopt.h46 extern char* optarg;
/macosx-10.9.5/dcerpc-58/dcerpc/demos/echo_number/
H A Dgetopt.h46 extern char* optarg;
/macosx-10.9.5/dcerpc-58/dcerpc/demos/echo_server/
H A Dgetopt.h46 extern char* optarg;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/include/
H A Dast_getopt.h37 extern char* optarg;
/macosx-10.9.5/top-89.1.2/
H A Doptions.c217 char *optarg; local
220 if(false == top_option_get(argc, argv, opts, &offset, &optvalue, &optarg)) {
227 if(top_prefs_set_mode(optarg)) {
228 fprintf(stderr, "invalid argument for -c: %s\n", optarg);
249 if(!string_is_integer(optarg)) {
252 optarg);
256 n = atoi(optarg);
259 fprintf(stderr, "invalid argument for -i: %s\n", optarg);
270 if(!string_is_integer(optarg)) {
273 optarg);
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/db_codegen/
H A Ddb_codegen.c28 extern char *optarg;
48 if (strcasecmp(optarg, "c") == 0) {
52 strcasecmp(optarg, "c++") == 0 ||
53 strcasecmp(optarg, "cxx") == 0)
55 else if (strcasecmp(optarg, "java") == 0)
61 if (freopen(optarg, "r", stdin) == NULL) {
63 progname, optarg, strerror(errno));
68 ofname = optarg;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/include/
H A Dgetopt-compat.h28 #define optarg lutil_optarg macro
34 LDAP_LUTIL_V (char *) optarg;
/macosx-10.9.5/SmartcardCCID-55005/libusb/libusb/
H A Dlibusb-config.in27 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
28 *) optarg= ;;
33 prefix=$optarg
35 exec_prefix=$optarg
42 exec_prefix=$optarg
/macosx-10.9.5/pcre-7/pcre/
H A Dpcre-config.in30 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
31 *) optarg= ;;
36 prefix=$optarg
38 exec_prefix=$optarg
45 exec_prefix=$optarg
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/test/
H A Dtestargs.c49 const char *optarg; local
56 while (apr_getopt(opt, "abcd", &ch, &optarg) == APR_SUCCESS) {
63 format_arg(str, ch, optarg);
79 const char *optarg; local
89 while (apr_getopt(opt, "efgh", &ch, &optarg) == APR_SUCCESS) {
95 format_arg(str, ch, optarg);
111 const char *optarg; local
121 while (apr_getopt(opt, "a:", &ch, &optarg) == APR_SUCCESS) {
124 format_arg(str, ch, optarg);
140 const char *optarg; local
169 const char *optarg; local
198 const char *optarg; local
[all...]
/macosx-10.9.5/apr-30/apr/apr/test/
H A Dtestargs.c49 const char *optarg; local
56 while (apr_getopt(opt, "abcd", &ch, &optarg) == APR_SUCCESS) {
63 format_arg(str, ch, optarg);
79 const char *optarg; local
89 while (apr_getopt(opt, "efgh", &ch, &optarg) == APR_SUCCESS) {
95 format_arg(str, ch, optarg);
111 const char *optarg; local
121 while (apr_getopt(opt, "a:", &ch, &optarg) == APR_SUCCESS) {
124 format_arg(str, ch, optarg);
140 const char *optarg; local
169 const char *optarg; local
198 const char *optarg; local
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/examples/
H A Drl.c52 extern char *optarg;
106 prompt = optarg;
109 fd = atoi(optarg);
112 fprintf (stderr, "%s: bad file descriptor `%s'\n", progname, optarg);
117 deftext = optarg;
120 nch = atoi(optarg);
123 fprintf (stderr, "%s: bad value for -n: `%s'\n", progname, optarg);
/macosx-10.9.5/shell_cmds-175/getopt/
H A Dgetopt.c21 if (optarg != NULL)
22 printf(" -%c %s", c, optarg);
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/store/XOTclSdbm/
H A Dutil.c89 ** Side Effects + The argument to an option is pointed to by 'optarg' **
101 ** 89/08/11 Janick Bergeron Optional optarg when ';' in optstring **
105 char *optarg; /* Global argument pointer. */ variable
124 optarg = NULL;
133 optarg = place = argv[optind++];
153 optarg = scan;
165 optarg = argv[optind];
173 optarg = scan;
180 optarg = NULL;
182 optarg
[all...]
/macosx-10.9.5/shell_cmds-175/hexdump/
H A Dhexsyntax.c88 add(optarg);
91 addfile(optarg);
94 if ((length = atoi(optarg)) < 0)
95 errx(1, "%s: bad length value", optarg);
102 if ((skip = strtoll(optarg, &p, 0)) < 0)
103 errx(1, "%s: bad skip value", optarg);
/macosx-10.9.5/remote_cmds-41.90.1/telnet.tproj/
H A Dmain.c189 if ((tos = parsetos(optarg, "tcp")) < 0)
192 optarg,
196 ultmp = strtoul(optarg, &ep, 0);
197 if (*ep || ep == optarg || ultmp > MAXTOS)
200 optarg,
208 auth_disable_name(optarg);
225 set_escape_char(optarg);
276 (void)strncpy(dest_realm, optarg, dst_realm_sz);
295 user = optarg;
298 SetNetTrace(optarg);
[all...]
/macosx-10.9.5/file_cmds-230/mtree/
H A Dmtree.c89 spec1 = fopen(optarg, "r");
91 err(1, "%s", optarg);
93 spec2 = fopen(optarg, "r");
95 err(1, "%s", optarg);
103 while ((p = strsep(&optarg, " \t,")) != NULL)
109 while ((p = strsep(&optarg, " \t,")) != NULL)
125 dir = optarg;
135 crc_total = (uint32_t)~strtoul(optarg, &p, 0);
137 errx(1, "illegal seed value -- %s", optarg);
153 read_excludes_file(optarg);
[all...]
/macosx-10.9.5/text_cmds-87/nl/
H A Dnl.c163 parse_numbering(optarg, BODY);
166 clen = mbrlen(optarg, MB_CUR_MAX, NULL);
170 memcpy(delim1, optarg, delim1len = clen);
171 clen = mbrlen(optarg + delim1len,
177 memcpy(delim2, optarg + delim1len,
179 if (optarg[delim1len + clen] != '\0')
182 optarg);
187 parse_numbering(optarg, FOOTER);
190 parse_numbering(optarg, HEADER);
194 val = strtol(optarg,
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/clib/
H A Dgetopt.c47 char *optarg; /* argument associated with option */ variable
83 optarg = NULL;
122 optarg = NULL;
128 optarg = place;
140 optarg = nargv[optind];
/macosx-10.9.5/BerkeleyDB-21/db/examples_c/csv/
H A Dload_main.c50 if (freopen(optarg, "r", stdin) == NULL) {
52 "%s: %s\n", optarg, db_strerror(errno));
57 if (strcasecmp(optarg, "excel") == 0) {
63 home = optarg;
66 if (strtoul_err(optarg, &version))
/macosx-10.9.5/Libc-997.90.3/stdlib/FreeBSD/
H A Dgetopt.c52 char *optarg; /* argument associated with option */ variable
118 optarg = NULL;
125 optarg = place;
127 optarg = nargv[optind];
134 optarg = NULL;
/macosx-10.9.5/SecurityTool-55115/
H A Dkeychain_export.c325 kcName = optarg;
328 outFile = optarg;
331 if(!strcmp("certs", optarg)) {
334 else if(!strcmp("allKeys", optarg)) {
337 else if(!strcmp("pubKeys", optarg)) {
340 else if(!strcmp("privKeys", optarg)) {
343 else if(!strcmp("identities", optarg)) {
346 else if(!strcmp("all", optarg)) {
354 if(!strcmp("openssl", optarg)) {
357 else if(!strcmp("openssh1", optarg)) {
[all...]

Completed in 320 milliseconds

1234567891011>>