HomeSort by relevance Sort by last modified time
    Searched refs:optc (Results 51 - 75 of 77) sorted by null

1 23 4

  /external/toybox/toys/other/
modinfo.c 105 for(TT.mod = 0; TT.mod<toys.optc; TT.mod++) {
  /external/toybox/toys/posix/
du.c 162 for (args = toys.optc ? toys.optargs : noargs; *args; args++)
id.c 164 if (toys.optc) while(*toys.optargs) do_id(*toys.optargs++);
grep.c 385 toys.optc--;
390 if (!(toys.optflags & FLAG_h) && toys.optc>1) toys.optflags |= FLAG_H;
  /external/toybox/
toys.h 107 int optc; // Count of optargs member in struct:toy_context
  /toolchain/binutils/binutils-2.25/gas/config/
tc-nds32.h 53 #define md_parse_option(optc, optarg) nds32_parse_option (optc, optarg)
  /toolchain/binutils/binutils-2.25/ld/
ldemul.c 139 ldemul_handle_option (int optc)
142 return (*ld_emulation->handle_option) (optc);
lexsup.c 644 int optc; local
661 optc = getopt_long_only (argc, argv, shortopts, longopts, &longind);
662 if (optc == '?')
665 optc = getopt_long (argc, argv, "-", really_longopts, &longind);
668 if (ldemul_handle_option (optc))
671 if (optc == -1)
674 switch (optc)
    [all...]
  /external/ltp/testcases/network/stress/ns-tools/
ns-icmpv4_sender.c 167 int optc; /* option */ local
177 while ((optc = getopt(argc, argv, "I:S:M:D:s:t:dhcfilLpv")) != EOF) {
178 switch (optc) {
ns-icmp_redirector.c 166 int optc; /* option */ local
169 while ((optc = getopt(argc, argv, "I:N:t:bdh")) != EOF) {
170 switch (optc) {
ns-icmpv6_sender.c 428 int optc; /* option */ local
446 while ((optc =
448 switch (optc) {
  /external/toybox/lib/
args.c 41 * toys.optc = 1 (there was 1 leftover argument)
473 toys.optargs[toys.optc++] = toys.argv[gof.argc];
477 if (toys.optc<gof.minargs)
480 if (toys.optc>gof.maxargs)
  /external/toybox/toys/pending/
useradd.c 48 if (toys.optc == 2) {
modprobe.c 506 if ((toys.optc < 1) && (((flags & FLAG_r) && (flags & FLAG_l))
512 if ((flags & FLAG_r) && !toys.optc) {
crontab.c 347 if (!toys.optc) {
telnet.c 296 if (toys.optc == 2) port = toys.optargs[1];
fsck.c 202 args = xzalloc((toys.optc + 2 + 1 + 1) * sizeof(char*)); //+1, for NULL, +1 if -C
tftp.c 74 if(toys.optc == 2) port = atolx_range(toys.optargs[1], 1, 65535);
fdisk.c     [all...]
  /external/mksh/src/
misc.c 377 int optc, arrayset = 0; local
398 while ((optc = ksh_getopt(argv, &go, opts)) != -1) {
400 switch (optc) {
471 if (what == OF_SET && optc == 's') {
476 if (optc == OFC(i) &&
482 internal_errorf("parse_args: '%c'", optc);
1805 int optc, rv, phys_path; local
    [all...]
histrap.c 91 int optc; local
100 while ((optc = ksh_getopt(wp, &builtin_opt,
102 switch (optc) {
144 optc, builtin_opt.optarg);
311 if ((optc = command(editor ? editor : TFCEDIT_dollaru, 0)))
312 return (optc);
    [all...]
Build.sh 68 optc=`echo "$line" | sed 's/^[<>]\(.\).*$/\1/'`
69 test x"$optc" = x'|' && return
70 optclo=`echo "$optc" | tr $allu $alll`
71 if test x"$optc" = x"$optclo"; then
159 case $optc in
160 '|') optc=0 ;;
161 *) optc=\'$optc\' ;;
166 o_gen=$o_gen$nl"$line, $optc)"
172 3:) genopt_die Expected optc sym at EOF ;
    [all...]
exec.c 490 int optc; local
541 while ((optc = ksh_getopt(ap, &builtin_opt, "a:c")) != -1)
542 switch (optc) {
565 while ((optc = ksh_getopt(ap, &builtin_opt, ":p")) == 'p')
567 if (optc != -1)
    [all...]
  /external/toybox/toys/net/
ftpget.c 120 if (toys.optc != 3) error_exit("-m FROM TO");
ifconfig.c 350 if(toys.optc < 2) {

Completed in 609 milliseconds

1 23 4