Lines Matching refs:more
90 static long flag_opts(char *new, long flags, char **more)
133 if (more && i == ARRAY_LEN(opts)) {
134 i = *more ? strlen(*more) : 0;
135 *more = xrealloc(*more, i + strlen(new) + 2);
136 if (i) (*more)[i++] = ',';
137 strcpy(i+*more, new);
402 char *more = 0;
404 flags = flag_opts(opts, flags, &more);
405 mount_filesystem(dev, dir, TT.type, flags, more);
406 if (CFG_TOYBOX_FREE) free(more);