/external/bison/lib/ |
D | sys_wait.in.h | 54 # define WIFSIGNALED(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f) 57 # define WIFEXITED(x) (WTERMSIG (x) == 0) 60 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) 64 # ifndef WTERMSIG 65 # define WTERMSIG(x) ((x) & 0x7f) macro 98 # define WTERMSIG(x) SIGTERM
|
D | wait-process.c | 339 *termsigp = WTERMSIG (status); in wait_subprocess() 341 if (WTERMSIG (status) == SIGPIPE && ignore_sigpipe) in wait_subprocess() 347 progname, (int) WTERMSIG (status)); in wait_subprocess()
|
/external/bison/linux-lib/sys/ |
D | wait.h | 356 # define WIFSIGNALED(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f) 359 # define WIFEXITED(x) (WTERMSIG (x) == 0) 362 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) 366 # ifndef WTERMSIG 367 # define WTERMSIG(x) ((x) & 0x7f) macro 400 # define WTERMSIG(x) SIGTERM macro
|
/external/bison/darwin-lib/sys/ |
D | wait.h | 356 # define WIFSIGNALED(x) (WTERMSIG (x) != 0 && WTERMSIG(x) != 0x7f) 359 # define WIFEXITED(x) (WTERMSIG (x) == 0) 362 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) 366 # ifndef WTERMSIG 367 # define WTERMSIG(x) ((x) & 0x7f) macro 400 # define WTERMSIG(x) SIGTERM macro
|
/external/valgrind/main/memcheck/tests/ |
D | addressable.c | 141 assert(WTERMSIG(status) != 0); in main() 144 (WTERMSIG(status) == SIGSEGV || in main() 145 WTERMSIG(status) == SIGBUS)) in main() 149 WTERMSIG(status)); in main()
|
/external/valgrind/main/none/tests/ |
D | async-sigs.c | 64 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status)); in do_kill() 117 } else if (!WIFSIGNALED(status) || WTERMSIG(status) != fatalsig) { in test() 120 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status)); in test()
|
D | mmap_fcntl_bug.c | 67 errx(1, "Child died with signal %i", WTERMSIG(status)); in main()
|
D | pth_atfork1.c | 113 if (WTERMSIG (status) != 0) in thread()
|
/external/openssh/openbsd-compat/ |
D | bsd-waitpid.h | 43 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1) macro
|
/external/bison/m4/ |
D | posix_spawn.m4 | 118 #ifndef WTERMSIG 119 # define WTERMSIG(x) ((x) & 0x7f) 122 # define WIFEXITED(x) (WTERMSIG (x) == 0) 261 #ifndef WTERMSIG 262 # define WTERMSIG(x) ((x) & 0x7f) 265 # define WIFEXITED(x) (WTERMSIG (x) == 0)
|
/external/mksh/src/ |
D | jobs.c | 225 return (128 + WTERMSIG(p->status)); in proc_errorlevel() 1185 (sigtraps[WTERMSIG(status)].flags & TF_TTY_INTR)) in j_waitj() 1186 trapsig(WTERMSIG(status)); in j_waitj() 1515 (WTERMSIG(p->status) == SIGINT || in j_print() 1516 WTERMSIG(p->status) == SIGPIPE)) { in j_print() 1519 strlcpy(buf, sigtraps[WTERMSIG(p->status)].mess, in j_print()
|
/external/protobuf/gtest/test/ |
D | gtest_test_utils.py | 249 self._return_code = -os.WTERMSIG(ret_code)
|
/external/gtest/test/ |
D | gtest_test_utils.py | 277 self._return_code = -os.WTERMSIG(ret_code)
|
/external/oprofile/libutil++/ |
D | child_reader.cpp | 235 first_error = WTERMSIG(ret); in terminate_process()
|
/external/chromium_org/testing/gtest/test/ |
D | gtest_test_utils.py | 277 self._return_code = -os.WTERMSIG(ret_code)
|
/external/chromium/testing/gtest/test/ |
D | gtest_test_utils.py | 277 self._return_code = -os.WTERMSIG(ret_code)
|
/external/chromium/sdch/open-vcdiff/src/gtest/ |
D | gtest-death-test.cc | 97 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; in operator ()() 111 m << "Terminated by signal " << WTERMSIG(exit_code); in ExitSummary()
|
/external/chromium_org/sandbox/linux/tests/ |
D | unit_tests.cc | 246 int subprocess_signal_number = WTERMSIG(status); in DeathBySignal()
|
/external/e2fsprogs/misc/ |
D | logsave.c | 218 WTERMSIG(status)); in run_program()
|
/external/chromium_org/tools/android/forwarder2/ |
D | daemon.cc | 97 string_builder.Append("signal %d.", WTERMSIG(status)); in SigChildHandler()
|
/external/open-vcdiff/gtest/src/ |
D | gtest-death-test.cc | 130 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; in operator ()() 148 m << "Terminated by signal " << WTERMSIG(exit_code); in ExitSummary()
|
/external/protobuf/gtest/src/ |
D | gtest-death-test.cc | 130 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; in operator ()() 148 m << "Terminated by signal " << WTERMSIG(exit_code); in ExitSummary()
|
/external/chromium_org/base/process/ |
D | kill_posix.cc | 108 switch (WTERMSIG(status)) { in GetTerminationStatusImpl()
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
D | subprocess.cc | 442 int signal = WTERMSIG(status);
|
/external/protobuf/src/google/protobuf/compiler/ |
D | subprocess.cc | 437 int signal = WTERMSIG(status);
|