/external/openssh/openbsd-compat/ |
H A D | bsd-waitpid.h | 33 #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 D | Unix.h | 54 #ifndef WIFEXITED 55 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
|
/external/compiler-rt/lib/lsan/lit_tests/TestCases/ |
H A D | fork.cc | 20 assert(WIFEXITED(status));
|
H A D | fork_threaded.cc | 34 assert(WIFEXITED(status));
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
H A D | sanitizer_nolibc_test.cc | 28 EXPECT_EQ(true, WIFEXITED(status));
|
/external/bison/lib/ |
H A D | sys_wait.in.h | 51 /* 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 D | async-sigs.c | 61 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 D | mmap_fcntl_bug.c | 66 if (!WIFEXITED(status))
|
H A D | thread-exits.c | 125 else if (WIFEXITED(status) && WEXITSTATUS(status) == 0)
|
/external/chromium/testing/gmock/test/ |
H A D | gmock_test_utils.py | 90 if os.WIFEXITED(exit_code):
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/ |
H A D | clone_test.cc | 34 if (wait_result == clone_pid && WIFEXITED(status)) {
|
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
H A D | private.h | 97 #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 D | private.h | 97 #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 D | unit_tests.cc | 191 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 D | posix.cc | 123 if (!WIFEXITED(status)) {
|
/external/ppp/pppd/plugins/ |
H A D | passprompt.c | 98 if (!WIFEXITED(wstat))
|
/external/chromium_org/base/process/ |
H A D | kill_posix.cc | 124 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) 210 if (WIFEXITED(status)) { 234 if (WIFEXITED(status)) { 378 return WIFEXITED(status);
|
/external/dropbear/ |
H A D | cli-authpasswd.c | 103 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
|
/external/linux-tools-perf/bench/ |
H A D | sched-pipe.c | 91 assert((retpid == pid) && WIFEXITED(wait_stat));
|
/external/bison/darwin-lib/sys/ |
H A D | wait.h | 353 /* 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 D | wait.h | 353 /* 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 D | migration-exec.c | 55 WIFEXITED(ret)
|
/external/valgrind/main/memcheck/tests/ |
H A D | addressable.c | 150 } else if (WIFEXITED(status)) {
|
/external/chromium_org/tools/android/forwarder2/ |
H A D | daemon.cc | 88 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) 94 if (WIFEXITED(status))
|
/external/chromium/testing/gtest/test/ |
H A D | gtest_test_utils.py | 186 if os.WIFEXITED(exit_code): 278 else: # os.WIFEXITED(ret_code) should return True here.
|