HomeSort by relevance Sort by last modified time
    Searched full:optargs (Results 101 - 125 of 211) sorted by null

1 2 3 45 6 7 8 9

  /external/toybox/toys/other/
makedevs.c 48 xprintf("rootdir = %s\n", *toys.optargs);
53 xchdir(*toys.optargs);
switch_root.c 46 char *newroot = *toys.optargs, **cmdline = toys.optargs+1;
base64.c 86 loopfiles(toys.optargs, do_base64);
blockdev.c 48 for (ss = toys.optargs; *ss; ss++) {
dos2unix.c 70 loopfiles(toys.optargs, do_dos2unix);
truncate.c 63 loopfiles_rw(toys.optargs, O_WRONLY|O_CLOEXEC|(cr ? O_CREAT : 0), 0666, cr,
blkid.c 139 if (*toys.optargs) loopfiles(toys.optargs, do_blkid);
164 loopfiles(toys.optargs, do_blkid);
losetup.c 175 loopback_setup(NULL, *toys.optargs);
181 char *file = (toys.optflags & (FLAG_d|FLAG_c)) ? NULL : toys.optargs[1];
185 for (s = toys.optargs; *s; s++) {
nsenter.c 137 toys.exitval = xrun(toys.optargs);
163 toys.exitval = xrun(toys.optargs);
169 xexec(toys.optargs);
netcat.c 132 lookup_name(*toys.optargs, (uint32_t *)&address.sin_addr);
133 lookup_port(toys.optargs[1], &address.sin_port);
200 xexec(toys.optargs);
  /external/toybox/toys/posix/
cal.c 81 tm->tm_year = atolx_range(toys.optargs[--toys.optc], 1, 9999);
86 tm->tm_mon = atolx_range(toys.optargs[--toys.optc], 1, 12);
split.c 103 TT.outfile = xmprintf("%s%*c", (toys.optc == 2) ? toys.optargs[1] : "x",
107 loopfiles(toys.optargs, do_split);
uniq.c 67 if (toys.optc >= 1) infile = xfopen(toys.optargs[0], "r");
68 if (toys.optc >= 2) outfile = xfopen(toys.optargs[1], "w");
cksum.c 82 loopfiles(toys.optargs, do_cksum);
cmp.c 82 loopfiles_rw(toys.optargs, O_CLOEXEC, 0, toys.optflags&FLAG_s, do_cmp);
strings.c 66 loopfiles(toys.optargs, do_strings);
printf.c 79 char **arg = toys.optargs+1;
84 char *f = *toys.optargs;
131 } else error_exit("bad %%%c@%ld", c, (long)(f-*toys.optargs));
date.c 167 char *setdate = *toys.optargs, *format_string = "%a %b %e %H:%M:%S %Z %Y";
198 format_string = toys.optargs[0]+1;
199 setdate = toys.optargs[1];
  /external/toybox/
toys.h 104 char **optargs; // Arguments left over from get_optflags() member in struct:toy_context
107 int optc; // Count of optargs
  /external/toybox/toys/lsb/
mktemp.c 37 char *template = *toys.optargs;
killall.c 67 TT.names = toys.optargs;
  /external/toybox/toys/pending/
iconv.c 72 loopfiles(toys.optargs, do_iconv);
tr.c 257 set1 = expand_set(toys.optargs[0], &TT.len1);
259 if (toys.optargs[1]) {
260 if (toys.optargs[1][0] == '\0') error_exit("set2 can't be empty string");
261 set2 = expand_set(toys.optargs[1], &TT.len2);
dd.c 297 while (*toys.optargs) {
298 if (!(arg = strchr(*toys.optargs, '='))) error_exit("unknown arg %s", *toys.optargs);
301 key.name = *toys.optargs;
344 toys.optargs++;
  /external/clang/lib/Sema/
AttributeList.cpp 158 unsigned OptArgs : 4;
184 return getMinArgs() + getInfo(*this).OptArgs;
224 return getInfo(*this).OptArgs == 15;

Completed in 241 milliseconds

1 2 3 45 6 7 8 9