/third_party/toybox/toys/lsb/ |
D | pidof.c | 34 xprintf(" %s"+!!toys.exitval, toybuf); 35 toys.exitval = 0; 42 toys.exitval = 1; in pidof_main() 44 if (!toys.exitval) xputc('\n'); in pidof_main()
|
/third_party/toybox/toys/other/ |
D | timeout.c | 45 toys.exitval = (TT.nextsig==9) ? 137 : 124; in handler() 69 toys.exitval = 125; in timeout_main() 79 toys.exitval = 0; in timeout_main() 88 if (FLAG(preserve_status) || !toys.exitval) toys.exitval = status; in timeout_main()
|
D | mountpoint.c | 28 toys.exitval++; in die() 61 toys.exitval = !(st1.st_dev != st2.st_dev || st1.st_ino == st2.st_ino); in mountpoint_main() 65 printf("%s is %sa mountpoint\n", *toys.optargs, toys.exitval ? "not " : ""); in mountpoint_main()
|
D | reboot.c | 33 if (toys.optflags & FLAG_f) toys.exitval = reboot(types[idx]); in reboot_main() 34 else toys.exitval = kill(1, sigs[idx]); in reboot_main()
|
D | nsenter.c | 140 toys.exitval = xrun(toys.optargs); in unshare_main() 165 toys.exitval = xrun(toys.optargs); in unshare_main()
|
D | usleep.c | 25 toys.exitval = !!nanosleep(&tv, NULL); in usleep_main()
|
D | chroot.c | 28 toys.exitval = 125; in chroot_main()
|
D | pwdx.c | 28 toys.exitval = 1; in pwdx_main()
|
D | flock.c | 36 if ((op & LOCK_NB) && errno == EAGAIN) toys.exitval = 1; in flock_main()
|
D | readlink.c | 41 } else toys.exitval = 1; in readlink_main()
|
/third_party/toybox/toys/posix/ |
D | cmp.c | 44 toys.exitval = 0; 53 toys.exitval = 1; 69 toys.exitval = 1; 80 toys.exitval = 2; in cmp_main()
|
D | xargs.c | 192 toys.exitval = WEXITSTATUS(status); in xargs_main() 195 toys.exitval = 123; in xargs_main() 198 toys.exitval = 124; in xargs_main() 201 } else toys.exitval = 127; in xargs_main()
|
D | nohup.c | 24 toys.exitval = 125; in nohup_main() 42 toys.exitval = 0; in nohup_main()
|
D | test.c | 96 toys.exitval = 2; in test_main() 159 toys.exitval = !result; in test_main()
|
D | false.c | 20 toys.exitval = 1; in false_main()
|
D | tty.c | 31 toys.exitval = !tty; in tty_main()
|
D | sleep.c | 29 toys.exitval = !!nanosleep(&tv, NULL); in sleep_main()
|
D | nice.c | 36 toys.exitval = 125;
|
/third_party/ffmpeg/tools/ |
D | make_chlayout_test | 66 "help|usage|?|h" => sub { pod2usage({ -verbose => 1, -exitval => 0 }) }, 67 "manpage|m" => sub { pod2usage({ -verbose => 2, -exitval => 0 }) }, 68 ) and @ARGV >= 2 or pod2usage({ -verbose => 1, -exitval => 1 });
|
D | plotframes | 93 'help|usage|?|h' => sub { pod2usage ( { -verbose => 1, -exitval => 0 }) }, 94 'manpage|m' => sub { pod2usage ( { -verbose => 2, -exitval => 0 }) }, 98 ) or pod2usage( { -message=> "Parsing error", -verbose => 1, -exitval => 1 });
|
D | dvd2concat | 52 "help|usage|?|h" => sub { pod2usage({ -verbose => 1, -exitval => 0 }) }, 53 "manpage|m" => sub { pod2usage({ -verbose => 2, -exitval => 0 }) }, 55 ) and @ARGV == 1 or pod2usage({ -verbose => 1, -exitval => 1 });
|
/third_party/toybox/toys/pending/ |
D | 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",
|
D | sh.c | 489 pp->exit = toys.exitval; in run_command() 1078 if (!blk) toys.exitval = run_pipeline(&pl, 0); in run_function() 1079 else if (blk->run) toys.exitval = run_pipeline(&pl, blk->redir); in run_function() 1140 if (!strcmp(s, "then")) blk->run = blk->run && !toys.exitval; in run_function() 1144 if (!strcmp(ss, "while")) blk->run = blk->run && !toys.exitval; in run_function() 1145 else if (!strcmp(ss, "until")) blk->run = blk->run && toys.exitval; in run_function() 1284 toys.exitval = f && ferror(f); in sh_main()
|
/third_party/protobuf/kokoro/linux/ |
D | make_test_output.py | 43 exitval = values[6] 44 if int(exitval):
|
/third_party/toybox/porting/liteos_a/toys/other/ |
D | reboot.c | 26 toys.exitval = reboot(types[idx]); in reboot_main()
|