Searched refs:WTERMSIG (Results 1 - 25 of 55) sorted by relevance

123

/external/bison/lib/
H A Dsys_wait.in.h48 WTERMSIG are bits 7..0, while BeOS uses the opposite. Therefore programs
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
H A Dwait-process.c339 *termsigp = WTERMSIG (status);
341 if (WTERMSIG (status) == SIGPIPE && ignore_sigpipe)
347 progname, (int) WTERMSIG (status));
/external/openssh/openbsd-compat/
H A Dbsd-waitpid.h43 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1) macro
/external/valgrind/main/memcheck/tests/
H A Daddressable.c141 assert(WTERMSIG(status) != 0);
144 (WTERMSIG(status) == SIGSEGV ||
145 WTERMSIG(status) == SIGBUS))
149 WTERMSIG(status));
/external/bison/darwin-lib/sys/
H A Dwait.h350 WTERMSIG are bits 7..0, while BeOS uses the opposite. Therefore programs
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/linux-lib/sys/
H A Dwait.h350 WTERMSIG are bits 7..0, while BeOS uses the opposite. Therefore programs
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/none/tests/
H A Dasync-sigs.c64 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status));
117 } else if (!WIFSIGNALED(status) || WTERMSIG(status) != fatalsig) {
120 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status));
H A Dmmap_fcntl_bug.c67 errx(1, "Child died with signal %i", WTERMSIG(status));
H A Dpth_atfork1.c113 if (WTERMSIG (status) != 0)
/external/chromium/testing/gtest/test/
H A Dgtest_test_utils.py277 self._return_code = -os.WTERMSIG(ret_code)
/external/chromium_org/testing/gtest/test/
H A Dgtest_test_utils.py277 self._return_code = -os.WTERMSIG(ret_code)
/external/gtest/test/
H A Dgtest_test_utils.py277 self._return_code = -os.WTERMSIG(ret_code)
/external/oprofile/libutil++/
H A Dchild_reader.cpp235 first_error = WTERMSIG(ret);
/external/protobuf/gtest/test/
H A Dgtest_test_utils.py249 self._return_code = -os.WTERMSIG(ret_code)
/external/mksh/src/
H A Djobs.c225 return (128 + WTERMSIG(p->status));
1185 (sigtraps[WTERMSIG(status)].flags & TF_TTY_INTR))
1186 trapsig(WTERMSIG(status));
1515 (WTERMSIG(p->status) == SIGINT ||
1516 WTERMSIG(p->status) == SIGPIPE)) {
1519 strlcpy(buf, sigtraps[WTERMSIG(p->status)].mess,
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-death-test.cc97 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_;
111 m << "Terminated by signal " << WTERMSIG(exit_code);
/external/chromium_org/sandbox/linux/tests/
H A Dunit_tests.cc246 int subprocess_signal_number = WTERMSIG(status);
/external/chromium_org/tools/android/forwarder2/
H A Ddaemon.cc97 string_builder.Append("signal %d.", WTERMSIG(status));
/external/e2fsprogs/misc/
H A Dlogsave.c218 WTERMSIG(status));
/external/open-vcdiff/gtest/src/
H A Dgtest-death-test.cc130 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_;
148 m << "Terminated by signal " << WTERMSIG(exit_code);
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc130 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_;
148 m << "Terminated by signal " << WTERMSIG(exit_code);
/external/chromium_org/base/process/
H A Dkill_posix.cc108 switch (WTERMSIG(status)) {
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.cc442 int signal = WTERMSIG(status);
447 *error = "Neither WEXITSTATUS nor WTERMSIG is true?";
/external/dnsmasq/src/
H A Dhelper.c182 send_event(event_fd, EVENT_KILLED, WTERMSIG(status));
/external/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.cc437 int signal = WTERMSIG(status);
442 *error = "Neither WEXITSTATUS nor WTERMSIG is true?";

Completed in 895 milliseconds

123