Searched refs:WIFEXITED (Results 1 - 25 of 95) sorted by relevance

1234

/external/openssh/openbsd-compat/
H A Dbsd-waitpid.h33 #undef WIFEXITED macro
39 #define WIFEXITED(w) (!((_W_INT(w)) & 0377)) macro
41 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w))
42 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1)
/external/llvm/lib/Support/Unix/
H A DUnix.h54 #ifndef WIFEXITED
55 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
/external/compiler-rt/lib/lsan/lit_tests/TestCases/
H A Dfork.cc20 assert(WIFEXITED(status));
H A Dfork_threaded.cc34 assert(WIFEXITED(status));
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_nolibc_test.cc28 EXPECT_EQ(true, WIFEXITED(status));
/external/bison/lib/
H A Dsys_wait.in.h51 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
56 # ifndef WIFEXITED
57 # define WIFEXITED(x) (WTERMSIG (x) == 0) macro
68 /* The exit status. Only to be accessed if WIFEXITED(x) is true. */
94 # define WIFEXITED(x) ((x) != 3)
/external/valgrind/main/none/tests/
H A Dasync-sigs.c61 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
63 WIFEXITED(status) ? "exit" : "signal",
64 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status));
119 WIFEXITED(status) ? "exit" : "signal",
120 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status));
H A Dmmap_fcntl_bug.c66 if (!WIFEXITED(status))
H A Dthread-exits.c125 else if (WIFEXITED(status) && WEXITSTATUS(status) == 0)
/external/chromium/testing/gmock/test/
H A Dgmock_test_utils.py90 if os.WIFEXITED(exit_code):
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
H A Dclone_test.cc34 if (wait_result == clone_pid && WIFEXITED(status)) {
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dprivate.h97 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
100 #ifndef WIFEXITED
101 #define WIFEXITED(status) (((status) & 0xff) == 0) macro
102 #endif /* !defined WIFEXITED */
/external/icu4c/tools/tzcode/
H A Dprivate.h97 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
100 #ifndef WIFEXITED
101 #define WIFEXITED(status) (((status) & 0xff) == 0) macro
102 #endif /* !defined WIFEXITED */
/external/chromium_org/sandbox/linux/tests/
H A Dunit_tests.cc191 if (!WIFEXITED(status) || WEXITSTATUS(status) != kIgnoreThisTest ||
205 bool subprocess_terminated_normally = WIFEXITED(status);
218 bool subprocess_terminated_normally = WIFEXITED(status);
232 bool subprocess_terminated_normally = WIFEXITED(status);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dposix.cc123 if (!WIFEXITED(status)) {
/external/ppp/pppd/plugins/
H A Dpassprompt.c98 if (!WIFEXITED(wstat))
/external/chromium_org/base/process/
H A Dkill_posix.cc124 if (WIFEXITED(status) && WEXITSTATUS(status) != 0)
210 if (WIFEXITED(status)) {
234 if (WIFEXITED(status)) {
378 return WIFEXITED(status);
/external/dropbear/
H A Dcli-authpasswd.c103 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
/external/linux-tools-perf/bench/
H A Dsched-pipe.c91 assert((retpid == pid) && WIFEXITED(wait_stat));
/external/bison/darwin-lib/sys/
H A Dwait.h353 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
358 # ifndef WIFEXITED
359 # define WIFEXITED(x) (WTERMSIG (x) == 0) macro
370 /* The exit status. Only to be accessed if WIFEXITED(x) is true. */
396 # define WIFEXITED(x) ((x) != 3) macro
/external/bison/linux-lib/sys/
H A Dwait.h353 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
358 # ifndef WIFEXITED
359 # define WIFEXITED(x) (WTERMSIG (x) == 0) macro
370 /* The exit status. Only to be accessed if WIFEXITED(x) is true. */
396 # define WIFEXITED(x) ((x) != 3) macro
/external/qemu/
H A Dmigration-exec.c55 WIFEXITED(ret)
/external/valgrind/main/memcheck/tests/
H A Daddressable.c150 } else if (WIFEXITED(status)) {
/external/chromium_org/tools/android/forwarder2/
H A Ddaemon.cc88 if (WIFEXITED(status) && WEXITSTATUS(status) == 0)
94 if (WIFEXITED(status))
/external/chromium/testing/gtest/test/
H A Dgtest_test_utils.py186 if os.WIFEXITED(exit_code):
278 else: # os.WIFEXITED(ret_code) should return True here.

Completed in 7952 milliseconds

1234