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

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/utils/
H A Dsmbw_sample.c32 extern char *optarg;
42 smbw_setshared("WORKGROUP", optarg);
45 smbw_setshared("LOGFILE", optarg);
48 smbw_setshared("PREFIX", optarg);
51 smbw_setshared("DEBUG", optarg);
54 p = strchr_m(optarg,'%');
59 smbw_setshared("USER", optarg);
62 smbw_setshared("RESOLVE_ORDER",optarg);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/bin/misc/
H A Duuidtest.c95 printf("Searching user: %s\n", optarg);
96 ret = getuuidfromname( optarg, UUID_USER, uuid);
98 printf("User: %s ==> UUID: %s\n", optarg, uuid_bin2string(uuid));
100 printf("User %s not found.\n", optarg);
108 printf("Searching group: %s\n", optarg);
109 ret = getuuidfromname( optarg, UUID_GROUP, uuid);
111 printf("Group: %s ==> UUID: %s\n", optarg, uuid_bin2string(uuid));
113 printf("Group %s not found.\n", optarg);
121 printf("Searching uuid: %s\n", optarg);
122 uuid_string2bin(optarg, uui
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/smbwrapper/
H A Dsmbsh.c42 extern char *optarg;
51 libd = optarg;
54 smbw_setshared("WORKGROUP", optarg);
57 smbw_setshared("LOGFILE", optarg);
60 smbw_setshared("PREFIX", optarg);
63 smbw_setshared("DEBUG", optarg);
66 p = strchr_m(optarg,'%');
71 smbw_setshared("USER", optarg);
74 smbw_setshared("RESOLVE_ORDER",optarg);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp/pppoecd/
H A Doptions.c132 idle_time_limit = atoi(optarg);
137 strncpy(user, optarg, MAXNAMELEN);
138 strncpy(our_name, optarg, MAXNAMELEN);
141 strncpy(passwd, optarg, MAXSECRETLEN);
144 pppoe_ac_name = optarg;
147 pppoe_srv_name = optarg;
151 lcp_wantoptions[0].mru = atoi(optarg);
154 lcp_allowoptions[0].mru = atoi(optarg);
157 req_unit = atoi(optarg);
160 inet_aton(optarg,
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/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;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp/pppd/plugins/pppoe/
H A Dpppoed.c98 filt->num_restart = strtol (optarg, (char **) NULL, 10);
102 if (strlen (optarg) >= IFNAMSIZ) {
106 strncpy (sess->name, optarg, strlen(optarg)+1);
113 if (strlen(optarg) > MAX_FNAME) {
117 filt->fname=malloc(strlen(optarg));
118 strncpy (filt->fname, optarg, strlen(optarg));
127 if (strlen(optarg) > MAX_FNAME) {
131 filt->fname=malloc(strlen(optarg)
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/dnsmasq/
H A Doption.c163 optarg = p+1;
167 optarg = NULL;
226 optarg)
237 !optarg)
244 conffile = safe_string_alloc(optarg);
249 *runfile = safe_string_alloc(optarg);
253 *resolv_file = safe_string_alloc(optarg);
257 *lease_file = safe_string_alloc(optarg);
262 canonicalise(optarg);
263 *mxname = safe_string_alloc(optarg);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/ncpfs/
H A Dgetopt.h14 char **optopt, char **optarg, unsigned long *value);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/smbfs/
H A Dgetopt.h11 char **optopt, char **optarg, unsigned long *flag,
H A Dgetopt.c17 * @optarg: output; will contain the value (if one exists)
27 char **optopt, char **optarg, unsigned long *flag,
40 *optarg = NULL;
45 *optarg = val;
26 smb_getopt(char *caller, char **options, struct option *opts, char **optopt, char **optarg, unsigned long *flag, unsigned long *value) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/iptables-1.x/extensions/
H A Dlibipt_ULOG.c86 if (check_inverse(optarg, &invert, NULL, 0))
89 group_d = atoi(optarg);
104 if (check_inverse(optarg, &invert, NULL, 0))
108 if (strlen(optarg) > sizeof(loginfo->prefix) - 1)
113 if (strlen(optarg) == 0)
117 if (strlen(optarg) != strlen(strtok(optarg, "\n")))
121 strcpy(loginfo->prefix, optarg);
128 if (atoi(optarg) < 0)
132 loginfo->copy_range = (unsigned long long)atoll(optarg);
[all...]
H A Dlibipt_REJECT.c108 if (check_inverse(optarg, &invert, NULL, 0))
112 if ((strncasecmp(reject_table[i].name, optarg, strlen(optarg)) == 0)
113 || (strncasecmp(reject_table[i].alias, optarg, strlen(optarg)) == 0)) {
119 if (strncasecmp("echo-reply", optarg, strlen(optarg)) == 0
120 || strncasecmp("echoreply", optarg, strlen(optarg)) == 0)
123 exit_error(PARAMETER_PROBLEM, "unknown reject type `%s'",optarg);
[all...]
H A Dlibip6t_owner.c65 check_inverse(optarg, &invert, &optind, 0);
67 if ((pwd = getpwnam(optarg)))
70 ownerinfo->uid = strtoul(optarg, &end, 0);
71 if (*end != '\0' || end == optarg)
72 exit_error(PARAMETER_PROBLEM, "Bad OWNER UID value `%s'", optarg);
81 check_inverse(optarg, &invert, &optind, 0);
82 if ((grp = getgrnam(optarg)))
85 ownerinfo->gid = strtoul(optarg, &end, 0);
86 if (*end != '\0' || end == optarg)
87 exit_error(PARAMETER_PROBLEM, "Bad OWNER GID value `%s'", optarg);
[all...]
H A Dlibipt_owner.c67 check_inverse(optarg, &invert, &optind, 0);
68 if ((pwd = getpwnam(optarg)))
71 ownerinfo->uid = strtoul(optarg, &end, 0);
72 if (*end != '\0' || end == optarg)
73 exit_error(PARAMETER_PROBLEM, "Bad OWNER UID value `%s'", optarg);
82 check_inverse(optarg, &invert, &optind, 0);
83 if ((grp = getgrnam(optarg)))
86 ownerinfo->gid = strtoul(optarg, &end, 0);
87 if (*end != '\0' || end == optarg)
88 exit_error(PARAMETER_PROBLEM, "Bad OWNER GID value `%s'", optarg);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/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];
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/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))
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/
H A Dxml2-config.in36 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
37 *) optarg= ;;
42 prefix=$optarg
52 exec_prefix=$optarg
H A Dxml2-config36 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
37 *) optarg= ;;
42 prefix=$optarg
52 exec_prefix=$optarg
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/db_deadlock/
H A Ddb_deadlock.c43 extern char *optarg;
69 switch (optarg[0]) {
95 if (optarg[1] != '\0')
99 home = optarg;
102 logfile = optarg;
105 passwd = strdup(optarg);
106 memset(optarg, 0, strlen(optarg));
114 if ((str = strchr(optarg, '.')) != NULL) {
120 if (*optarg !
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/db_deadlock/
H A Ddb_deadlock.c29 extern char *optarg;
54 switch (optarg[0]) {
80 if (optarg[1] != '\0')
84 home = optarg;
87 logfile = optarg;
90 passwd = strdup(optarg);
91 memset(optarg, 0, strlen(optarg));
99 if ((str = strchr(optarg, '.')) != NULL) {
105 if (*optarg !
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/dnsmasq-2.15/src/
H A Doption.c243 optarg = p+1;
247 optarg = NULL;
302 if (f && optarg)
312 if (f && !optarg)
324 conffile = safe_string_alloc(optarg);
339 conffile = safe_string_alloc(optarg);
345 daemon->runfile = safe_string_alloc(optarg);
350 char *name = safe_string_alloc(optarg);
378 char *comma = strchr(optarg, ',');
381 if (!canonicalise(optarg) || (comm
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-runtime/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);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/wget-1.12/lib/
H A Dgetopt.in.h42 # undef optarg macro
52 # define optarg __GETOPT_ID (optarg) macro
114 extern char *optarg;
155 a compiled-in constant, such as set a value from `optarg', set the
190 takes an argument, to be placed in `optarg'.
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);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/zebra/lib/
H A Dgetopt1.c136 if (optarg)
137 printf (" with arg %s", optarg);
166 printf ("option c with value `%s'\n", optarg);
170 printf ("option d with value `%s'\n", optarg);

Completed in 173 milliseconds

1234567891011>>