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

1234

/external/fio/os/windows/posix/include/sys/
H A Dwait.h5 #define WIFEXITED(a) 0 macro
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_nolibc_test.cc28 EXPECT_EQ(true, WIFEXITED(status));
/external/compiler-rt/test/lsan/TestCases/
H A Dfork.cc20 assert(WIFEXITED(status));
H A Dfork_threaded.cc34 assert(WIFEXITED(status));
/external/llvm/lib/Support/Unix/
H A DUnix.h58 #ifndef WIFEXITED
59 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
/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/compiler-rt/test/asan/TestCases/Linux/
H A Dclone_test.cc35 if (wait_result == clone_pid && WIFEXITED(status)) {
/external/strace/test/
H A Dchildthread.c52 assert(WIFEXITED(status));
H A Dleaderkill.c56 assert(WIFEXITED(status));
/external/chromium_org/sandbox/linux/tests/
H A Dunit_tests.cc220 if (!WIFEXITED(status) || WEXITSTATUS(status) != kIgnoreThisTest ||
233 bool subprocess_terminated_normally = WIFEXITED(status);
246 bool subprocess_terminated_normally = WIFEXITED(status);
258 bool subprocess_terminated_normally = WIFEXITED(status);
280 WIFEXITED(status) && (kExitAfterSIGSEGV == WEXITSTATUS(status));
297 bool subprocess_terminated_normally = 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/icu/icu4c/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/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dtest_relocated_shared_relro.cpp94 else if (WIFEXITED(status)) {
H A Dtest_shared_relro.cpp94 else if (WIFEXITED(status)) {
H A Dtest_two_shared_relros.cpp108 else if (WIFEXITED(status)) {
/external/chromium_org/third_party/webrtc/base/
H A Dposix.cc106 if (!WIFEXITED(status)) {
/external/fio/arch/
H A Darch-ppc.h103 if (pid == -1 || !WIFEXITED(status))
/external/libunwind/tests/
H A Dforker.c62 if (!WIFEXITED (status) || WEXITSTATUS (status) != 0)
/external/ppp/pppd/plugins/
H A Dpassprompt.c98 if (!WIFEXITED(wstat))
/external/chromium_org/base/process/
H A Dkill_posix.cc125 if (WIFEXITED(status) && WEXITSTATUS(status) != 0)
216 if (WIFEXITED(status)) {
236 if (WIFEXITED(status)) {
371 return WIFEXITED(status);
/external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
H A Dsched-pipe.c89 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

Completed in 2605 milliseconds

1234