Searched refs:newopts (Results 1 - 8 of 8) sorted by last modified time

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Dm_ipt.c183 merge_options(struct option *oldopts, const struct option *newopts, argument
190 for (num_new = 0; newopts[num_new].name; num_new++) ;
197 merge[num_old + i] = newopts[i];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libfuse-lite/
H A Dfuse_opt.c101 char *newopts; local
103 newopts = strdup(opt);
106 newopts = realloc(*opts, oldlen + 1 + strlen(opt) + 1);
107 if (newopts) {
108 newopts[oldlen] = ',';
109 strcpy(newopts + oldlen + 1, opt);
112 if (!newopts)
115 *opts = newopts;
H A Dfusermount.c228 char *newopts; local
230 newopts = strdup(opt);
234 newopts = (char *) realloc(*optsp, newsize);
235 if (newopts)
236 sprintf(newopts + oldsize, ",%s", opt);
238 if (newopts == NULL) {
242 *optsp = newopts;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/include/
H A Dxtables.h408 struct option *oldopts, const struct option *newopts,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/iptables/
H A Dxtables.c103 const struct option *newopts,
109 if (newopts == NULL)
115 for (num_new = 0; newopts[num_new].name; num_new++) ;
135 memcpy(mp, newopts, sizeof(*mp) * num_new);
101 xtables_merge_options(struct option *orig_opts, struct option *oldopts, const struct option *newopts, unsigned int *option_offset) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/util-linux/
H A Dmount.c124 static void append_mount_options(char **oldopts, const char *newopts) argument
128 while (newopts[0]) {
130 int len = strlen(newopts);
131 p = strchr(newopts, ',');
132 if (p) len = p - newopts;
135 if (!strncmp(p, newopts, len)
142 p = xasprintf("%s,%.*s", *oldopts, len, newopts);
146 newopts += len;
147 while (newopts[0] == ',') newopts
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/iptables-1.x/
H A Dip6tables.c1080 merge_options(struct option *oldopts, const struct option *newopts, argument
1087 for (num_new = 0; newopts[num_new].name; num_new++);
1096 merge[num_old + i] = newopts[i];
H A Diptables.c1108 merge_options(struct option *oldopts, const struct option *newopts, argument
1115 for (num_new = 0; newopts[num_new].name; num_new++);
1124 merge[num_old + i] = newopts[i];

Completed in 91 milliseconds