Searched refs:optarg (Results 26 - 50 of 410) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dgetopt1.c116 if (optarg)
117 printf (" with arg %s", optarg);
146 printf ("option c with value `%s'\n", optarg);
150 printf ("option d with value `%s'\n", optarg);
H A Dgetopt.in.h49 # undef optarg macro
59 # define optarg __GETOPT_ID (optarg) macro
121 extern DLL_VARIABLE char *optarg;
162 a compiled-in constant, such as set a value from `optarg', set the
197 takes an argument, to be placed in `optarg'.
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/util-linux/
H A Dhexdump.c80 bb_dump_add(optarg);
83 bb_dump_addfile(optarg);
86 bb_dump_length = xatoi_u(optarg);
89 bb_dump_skip = xatoul_range_sfx(optarg, 0, LONG_MAX, suffixes);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/pppd/plugins/rp-pppoe/
H A Dpppoe-discovery.c42 conn->serviceName = xstrdup(optarg);
45 conn->acName = xstrdup(optarg);
51 conn->debugFile = fopen(optarg, "w");
54 optarg, strerror(errno));
60 conn->ifName = xstrdup(optarg);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/iptables-1.x/extensions/
H A Dlibipt_connbytes.c61 if (check_inverse(optarg, &invert, &optind, 0))
73 if (!strcmp(optarg, "original"))
75 else if (!strcmp(optarg, "reply"))
77 else if (!strcmp(optarg, "both"))
81 "Unknown --connbytes-dir `%s'", optarg);
86 if (!strcmp(optarg, "packets"))
88 else if (!strcmp(optarg, "bytes"))
90 else if (!strcmp(optarg, "avgpkt"))
94 "Unknown --connbytes-mode `%s'", optarg);
H A Dlibip6t_hashlimit.c111 static int parse_mode(struct xt_hashlimit_info *r, char *optarg) argument
114 char *arg = strdup(optarg);
165 if (!parse_rate(optarg, &r->cfg.avg))
167 "bad rate `%s'", optarg);
173 if (string_to_number(optarg, 0, 10000, &num) == -1)
175 "bad --hashlimit-burst `%s'", optarg);
181 if (string_to_number(optarg, 0, 0xffffffff, &num) == -1)
183 "bad --hashlimit-htable-size: `%s'", optarg);
189 if (string_to_number(optarg, 0, 0xffffffff, &num) == -1)
191 "bad --hashlimit-htable-max: `%s'", optarg);
[all...]
H A Dlibipt_hashlimit.c111 static int parse_mode(struct ipt_hashlimit_info *r, char *optarg) argument
114 char *arg = strdup(optarg);
165 if (!parse_rate(optarg, &r->cfg.avg))
167 "bad rate `%s'", optarg);
173 if (string_to_number(optarg, 0, 10000, &num) == -1)
175 "bad --hashlimit-burst `%s'", optarg);
181 if (string_to_number(optarg, 0, 0xffffffff, &num) == -1)
183 "bad --hashlimit-htable-size: `%s'", optarg);
189 if (string_to_number(optarg, 0, 0xffffffff, &num) == -1)
191 "bad --hashlimit-htable-max: `%s'", optarg);
[all...]
H A Dlibip6t_CONNMARK.c76 markinfo->mark = strtoul(optarg, &end, 0);
80 if (*end != '\0' || end == optarg)
81 exit_error(PARAMETER_PROBLEM, "Bad MARK value `%s'", optarg);
105 markinfo->mask = strtoul(optarg, &end, 0);
107 if (*end != '\0' || end == optarg)
108 exit_error(PARAMETER_PROBLEM, "Bad MASK value `%s'", optarg);
H A Dlibip6t_REJECT.c94 if (check_inverse(optarg, &invert, NULL, 0))
98 if ((strncasecmp(reject_table[i].name, optarg, strlen(optarg)) == 0)
99 || (strncasecmp(reject_table[i].alias, optarg, strlen(optarg)) == 0)) {
104 exit_error(PARAMETER_PROBLEM, "unknown reject type `%s'",optarg);
H A Dlibipt_CONNMARK.c80 markinfo->mark = strtoul(optarg, &end, 0);
84 if (*end != '\0' || end == optarg)
85 exit_error(PARAMETER_PROBLEM, "Bad MARK value `%s'", optarg);
109 markinfo->mask = strtoul(optarg, &end, 0);
111 if (*end != '\0' || end == optarg)
112 exit_error(PARAMETER_PROBLEM, "Bad MASK value `%s'", optarg);
H A Dlibip6t_NFLOG.c54 if (check_inverse(optarg, &invert, NULL, 0))
58 n = atoi(optarg);
68 if (check_inverse(optarg, &invert, NULL, 0))
72 n = strlen(optarg);
80 if (n != strlen(strtok(optarg, "\n")))
83 strcpy(info->prefix, optarg);
89 n = atoi(optarg);
99 n = atoi(optarg);
H A Dlibipt_NFLOG.c54 if (check_inverse(optarg, &invert, NULL, 0))
58 n = atoi(optarg);
68 if (check_inverse(optarg, &invert, NULL, 0))
72 n = strlen(optarg);
80 if (n != strlen(strtok(optarg, "\n")))
83 strcpy(info->prefix, optarg);
89 n = atoi(optarg);
99 n = atoi(optarg);
H A Dlibipt_statistic.c53 if (!strcmp(optarg, "random"))
55 else if (!strcmp(optarg, "nth"))
58 exit_error(PARAMETER_PROBLEM, "Bad mode `%s'", optarg);
64 prob = atof(optarg);
74 if (string_to_number(optarg, 0, 0xFFFFFFFF,
77 "cannot parse --every `%s'", optarg);
86 if (string_to_number(optarg, 0, 0xFFFFFFFF,
89 "cannot parse --packet `%s'", optarg);
H A Dlibip6t_connmark.c68 check_inverse(optarg, &invert, &optind, 0);
70 markinfo->mark = strtoul(optarg, &end, 0);
76 if (*end != '\0' || end == optarg)
77 exit_error(PARAMETER_PROBLEM, "Bad MARK value `%s'", optarg);
H A Dlibipt_connmark.c68 check_inverse(optarg, &invert, &optind, 0);
70 markinfo->mark = strtoul(optarg, &end, 0);
76 if (*end != '\0' || end == optarg)
77 exit_error(PARAMETER_PROBLEM, "Bad MARK value `%s'", optarg);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/torture/
H A Drpctorture.c223 extern char *optarg;
356 max_protocol = interpret_protocol(optarg,max_protocol);
363 pstrcpy(user_socket_options,optarg);
369 pstrcpy(cli_info.dest_host,optarg);
377 pstrcpy(scope, optarg);
384 pstrcpy(smb_cli->user_name,optarg);
390 memset(strchr_m(optarg,'%')+1,'X',strlen(password));
397 pstrcpy(smb_cli->domain,optarg);
409 cli_info.dest_ip = *interpret_addr2(optarg);
419 nprocs = atoi(optarg);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/db_checkpoint/
H A Ddb_checkpoint.c43 extern char *optarg;
80 home = optarg;
84 optarg, 1, (long)MAX_UINT32_T, &argval))
89 logfile = optarg;
92 passwd = strdup(optarg);
93 memset(optarg, 0, strlen(optarg));
102 optarg, 1, (long)MAX_UINT32_T, &argval))
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/db_checkpoint/
H A Ddb_checkpoint.c29 extern char *optarg;
65 home = optarg;
69 optarg, 1, (long)MAX_UINT32_T, &argval))
74 logfile = optarg;
77 passwd = strdup(optarg);
78 memset(optarg, 0, strlen(optarg));
87 optarg, 1, (long)MAX_UINT32_T, &argval))
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/examples/auth/crackcheck/
H A Dcrackcheck.c23 extern char *optarg;
34 dictionary = strdup(optarg);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libgpg-error-1.10/src/
H A Dgpg-error-config42 optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'`
45 optarg=
H A Dgpg-error-config.in42 optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'`
45 optarg=
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/test_micro/
H A Db_get.c11 extern char *optarg;
29 cachesize = (u_int32_t)atoi(optarg);
32 count = atoi(optarg);
35 switch (optarg[0]) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dgetopt.in.h49 # undef optarg macro
59 # define optarg __GETOPT_ID (optarg) macro
121 extern DLL_VARIABLE char *optarg;
162 a compiled-in constant, such as set a value from `optarg', set the
197 takes an argument, to be placed in `optarg'.
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test_micro/source/
H A Db_get.c11 extern char *optarg;
28 cachesize = (u_int32_t)atoi(optarg);
31 count = atoi(optarg);
34 switch (optarg[0]) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/bin/nbp/
H A Dnbprgstr.c48 extern char *optarg;
55 if (!atalk_aton(optarg, &ataddr)) {
62 if ((charset_t)-1 == (chMac = add_charset(optarg)) ) {
69 port = atoi( optarg );

Completed in 172 milliseconds

1234567891011>>