HomeSort by relevance Sort by last modified time
    Searched refs:exitval (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/toybox/toys/posix/
false.c 20 toys.exitval = 1;
tty.c 31 toys.exitval = !tty;
sleep.c 35 toys.exitval = !!nanosleep(&tv, NULL);
cmp.c 46 toys.exitval = 0;
55 toys.exitval = 1;
71 toys.exitval = 1;
82 toys.exitval = 2;
cat.c 61 toys.exitval = EXIT_FAILURE;
tee.c 66 if(len != writeall(fdl ? fdl->fd : 1, toybuf, len)) toys.exitval=1;
time.c 62 toys.exitval = WIFEXITED(stat) ? WEXITSTATUS(stat) : WTERMSIG(stat);
  /external/toybox/toys/lsb/
pidof.c 33 xprintf(" %s"+!!toys.exitval, toybuf);
34 toys.exitval = 0;
41 toys.exitval = 1;
43 if (!toys.exitval) xputc('\n');
mktemp.c 48 if (toys.optflags & FLAG_q) toys.exitval = 1;
killall.c 95 toys.exitval = 1;
su.c 98 toys.exitval = 1;
  /external/toybox/toys/pending/
test.c 47 toys.exitval = 2;
55 if (!toys.optc) toys.exitval = 0;
63 toys.exitval = 1;
68 if (id == 0) toys.exitval = !S_ISBLK(st.st_mode); // b
69 else if (id == 1) toys.exitval = !S_ISCHR(st.st_mode); // c
70 else if (id == 2) toys.exitval = !S_ISDIR(st.st_mode); // d
71 else if (id == 3) toys.exitval = 0; // e
72 else if (id == 4) toys.exitval = !S_ISREG(st.st_mode); // f
73 else if (id == 5) toys.exitval = !(st.st_mode & S_ISGID); // g
74 else if ((id == 6) || (id == 7)) toys.exitval = nolink; // h
    [all...]
useradd.c 140 toys.exitval = xrun((char *[]){"cp", "-R", skel, p, 0});
141 else toys.exitval = xrun((char *[]){"mkdir", "-p", p, 0});
142 if (!toys.exitval)
143 toys.exitval |= xrun((char *[]){"chown", "-R",
  /external/toybox/toys/other/
usleep.c 25 toys.exitval = !!nanosleep(&tv, NULL);
reboot.c 33 if (toys.optflags & FLAG_f) toys.exitval = reboot(types[idx]);
34 else toys.exitval = kill(1, sigs[idx]);
pwdx.c 28 toys.exitval = 1;
readlink.c 40 } else toys.exitval = 1;
flock.c 36 if ((op & LOCK_NB) && errno == EAGAIN) toys.exitval = 1;
printenv.c 41 if (*var && !catch) toys.exitval = 1;
mountpoint.c 26 toys.exitval++;
59 toys.exitval = !(st1.st_dev != st2.st_dev || st1.st_ino == st2.st_ino);
63 printf("%s is %sa mountpoint\n", *toys.optargs, toys.exitval ? "not " : "");
which.c 67 toys.exitval |= which_in_path(toys.optargs[i]);
nsenter.c 138 toys.exitval = xrun(toys.optargs);
163 toys.exitval = xrun(toys.optargs);
timeout.c 70 toys.exitval = xwaitpid(TT.pid);
inotifyd.c 125 toys.exitval = !!toys.signal;
  /external/protobuf/jenkins/
make_test_output.py 30 # Seq Host Starttime Runtime Send Receive Exitval Signal Command
42 exitval = values[6]
43 if int(exitval):

Completed in 723 milliseconds

1 2 3