/external/toybox/toys/posix/ |
df.c | 165 if (*toys.optargs) { 170 for (next = toys.optargs; *next; next++) {
|
du.c | 155 for (args = toys.optc ? toys.optargs : noargs; *args; args++)
|
find.c | 538 char **ss = toys.optargs; 543 for (len = 0; toys.optargs[len]; len++) 544 if (strchr("-!(", *toys.optargs[len])) break; 545 TT.filter = toys.optargs+len;
|
touch.c | 116 for (ss = toys.optargs; *ss;) {
|
cut.c | 106 char **argv = toys.optargs; //file name.
|
tail.c | 225 char **args = toys.optargs;
|
grep.c | 336 char **ss = toys.optargs;
|
od.c | 284 loopfiles(toys.optargs, do_od);
|
ls.c | 545 for (s = *toys.optargs ? toys.optargs : noargs; *s; s++) {
|
/external/toybox/www/ |
code.html | 238 already sorted into this.optflags, this.optargs, this.optc, and the GLOBALS() 343 get_optflags() in lib/args.c to intialize toys.optflags, toys.optargs, and 379 <p>Most commands don't use this field, instead the use optargs, optflags, 406 <li><p>char **<b>optargs</b> - Null terminated array of arguments left over 411 optargs[].<p></li> [all...] |
/external/toybox/toys/pending/ |
route.c | 434 if (!*toys.optargs) { 439 if (!strcmp(TT.family, "inet6")) setroute_inet6(toys.optargs); 440 else setroute(toys.optargs);
|
crontab.c | 245 char *fname = *toys.optargs ? *toys.optargs : "-";
|
telnet.c | 296 if (toys.optc == 2) port = toys.optargs[1]; 309 TT.sfd = xconnect(*toys.optargs, port, 0, SOCK_STREAM, IPPROTO_TCP, 0);
|
tftpd.c | 248 if (*toys.optargs) xchroot(*toys.optargs);
|
modprobe.c | 488 char **argv = toys.optargs, *procline = NULL; 513 if (depmode_read_entry(toys.optargs[0])) error_exit("no module found.");
|
expr.c | 199 arg = toys.optargs[TT.argidx++];
|
ftpget.c | 271 char **argv = toys.optargs; //host name + file name.
|
compress.c | 591 loopfiles(toys.optargs, do_zcat); 598 loopfiles(toys.optargs, do_zcat); 605 loopfiles(toys.optargs, do_gzip);
|
mke2fs.c | 418 if (toys.optargs[1]) { 419 sscanf(toys.optargs[1], "%u", &TT.blocks); 427 TT.fsfd = xcreate(*toys.optargs, temp, 0777);
|
diff.c | 456 int len = strlen(toys.optargs[TT.dir_num]), ret = 0; 463 tmp = concat_file_path(toys.optargs[1 - TT.dir_num], ptr); 773 files[j] = toys.optargs[j];
|
fdisk.c | [all...] |
/external/toybox/toys/other/ |
login.c | 63 else username = *toys.optargs;
|
xxd.c | 130 loopfiles(toys.optargs, toys.optflags&FLAG_r ? do_xxd_reverse : do_xxd);
|
bzcat.c | 671 loopfiles(toys.optargs, do_bzcat); 720 loopfiles(toys.optargs, do_bunzip2);
|
/external/toybox/toys/lsb/ |
md5sum.c | 242 loopfiles(toys.optargs, do_hash);
|