HomeSort by relevance Sort by last modified time
    Searched full:optc (Results 26 - 50 of 91) sorted by null

12 3 4

  /external/toybox/toys/posix/
ulimit.c 70 if ((toys.optflags&(FLAG_a|FLAG_p)) && toys.optc) error_exit("can't set -ap");
81 if (!toys.optc) {
107 if (toys.optc) {
xargs.c 130 if (!toys.optc) {
133 toys.optc = 1;
136 for (entries = 0, bytes = -1; entries < toys.optc; entries++, bytes++)
cp.c 366 char *destname = toys.optargs[--toys.optc];
369 if (toys.optc>1 && !destdir) error_exit("'%s' not directory", destname);
401 for (i=0; i<toys.optc; i++) {
490 TT.destname = toys.optargs[toys.optc-1];
493 if (toys.optc == 1) return;
495 if (toys.optc < 2) error_exit("needs 2 args");
tail.c 151 if (toys.optc > 1) xprintf("==> %s <==\n", name);
233 toys.optc--;
243 TT.files = xmalloc(toys.optc*8);
uudecode.c 33 if (toys.optc) ifd = xopenro(*toys.optargs);
logger.c 81 if (toys.optc) {
rm.c 85 if (!toys.optc && !(toys.optflags & FLAG_f)) error_exit("Needs 1 argument");
  /external/toybox/toys/pending/
lsof.c 54 if (toys.optc) {
57 for (i = 0; i<toys.optc; i++)
61 if (i==toys.optc) return;
430 if (toys.optc) {
431 TT.sought_files = xmalloc(toys.optc*sizeof(struct stat));
432 for (i = 0; i<toys.optc; ++i) xstat(toys.optargs[i], TT.sought_files+i);
brctl.c 322 toys.optargs++, toys.optc--;
323 if (toys.optc < t->nargs) help_exit("check args");
326 toys.optc -= t->nargs;
more.c 70 if (toys.optc > 1) show_file_header(name);
110 if (toys.optc > 1) {
  /external/ltp/testcases/network/stress/ns-tools/
ns-tcpclient.c 134 int optc; /* option */ local
160 while ((optc = getopt(argc, argv, "S:f:p:t:bwdh")) != EOF) {
161 switch (optc) {
ns-udpclient.c 142 int optc; /* option */ local
168 while ((optc = getopt(argc, argv, "S:f:p:bdh")) != EOF) {
169 switch (optc) {
ns-igmp_querier.c 246 int optc; /* option */ local
257 while ((optc = getopt(argc, argv, "I:m:s:r:t:i:obdh")) != EOF) {
258 switch (optc) {
ns-mcast_join.c 174 int optc; /* option */ local
177 while ((optc = getopt(argc, argv, "f:I:p:F:s:n:ml:i:a:dh")) != EOF) {
178 switch (optc) {
ns-mcast_receiver.c 159 int optc; /* option */ local
173 while ((optc = getopt(argc, argv, "f:I:m:F:s:p:t:bdh")) != EOF) {
174 switch (optc) {
ns-udpsender.c 164 int optc; /* option */ local
171 while ((optc = getopt(argc, argv, "f:D:p:s:t:obdhmI:")) != EOF) {
172 switch (optc) {
ns-udpserver.c 193 int optc; /* option */ local
210 while ((optc = getopt(argc, argv, "f:p:bo:dh")) != EOF) {
211 switch (optc) {
  /external/toybox/toys/lsb/
su.c 68 argv = argu = xmalloc(sizeof(char *)*(toys.optc + 4));
  /external/toybox/toys/other/
mkpasswd.c 39 if (toys.optc == 2) {
vmstat.c 86 if (toys.optc) loop_delay = atolx_range(toys.optargs[0], 0, INT_MAX);
87 if (toys.optc > 1) loop_max = atolx_range(toys.optargs[1], 1, INT_MAX) - 1;
modinfo.c 105 for(TT.mod = 0; TT.mod<toys.optc; TT.mod++) {
  /toolchain/binutils/binutils-2.27/ld/emultempl/
ticoff.em 72 gld${EMULATION_NAME}_handle_option (int optc)
74 switch (optc)
vms.em 156 gld${EMULATION_NAME}_handle_option (int optc)
158 switch (optc)
  /toolchain/binutils/binutils-2.27/ld/
ldemul.c 139 ldemul_handle_option (int optc)
142 return (*ld_emulation->handle_option) (optc);
  /toolchain/binutils/binutils-2.27/gas/
as.c 598 int optc = getopt_long_only (old_argc, old_argv, shortopts, longopts,
601 if (optc == -1)
604 switch (optc)
607 /* md_parse_option should return 1 if it recognizes optc,
609 if (md_parse_option (optc, optarg) != 0)
613 if (optc == 'v')
632 as_bad (_("unrecognized option -%c%s"), optc, optarg ? optarg : "");
810 && md_parse_option (optc, optarg))
957 if (md_parse_option (optc, optarg) != 0)
597 int optc = getopt_long_only (old_argc, old_argv, shortopts, longopts, local
    [all...]

Completed in 1264 milliseconds

12 3 4