HomeSort by relevance Sort by last modified time
    Searched refs:WIFEXITED (Results 1 - 25 of 592) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/openssh/openbsd-compat/
bsd-waitpid.h 33 #undef WIFEXITED
39 #define WIFEXITED(w) (!((_W_INT(w)) & 0377))
41 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w))
42 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1)
  /external/fio/os/windows/posix/include/sys/
wait.h 5 #define WIFEXITED(a) 0
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_nolibc_test.cc 28 EXPECT_EQ(true, WIFEXITED(status));
  /external/compiler-rt/test/lsan/TestCases/
fork.cc 20 assert(WIFEXITED(status));
fork_threaded.cc 34 assert(WIFEXITED(status));
  /external/ltp/testcases/open_posix_testsuite/conformance/behavior/WIFEXITED/
1-1.c 2 Test case for assertion #1 of the WIFEXITED macro defined in sys/wait.h
4 verifying WIFEXITED returns a non-zero value.
36 if (WIFEXITED(s)) {
1-2.c 2 Test case for assertion #1 of the WIFEXITED macro defined in sys/wait.h
4 WIFEXITED returns a non-negative value.
36 if (WIFEXITED(s)) {
1-3.c 2 Test case for assertion #1 of the WIFEXITED macro defined in sys/wait.h
4 WIFEXITED returns zero.
39 if (!WIFEXITED(s)) {
  /external/selinux/libsepol/cil/test/unit/
test_integration.c 58 CuAssertIntEquals(tc, 1, WIFEXITED(status));
60 CuAssertIntEquals(tc, 1, WIFEXITED(status1));
62 CuAssertIntEquals(tc, 1, WIFEXITED(status2));
74 CuAssertIntEquals(tc, 1, WIFEXITED(status));
  /external/swiftshader/third_party/LLVM/lib/Support/Unix/
Unix.h 66 #ifndef WIFEXITED
67 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
  /external/bison/lib/
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)
68 /* The exit status. Only to be accessed if WIFEXITED(x) is true. */
94 # define WIFEXITED(x) ((x) != 3)
  /external/valgrind/none/tests/solaris/
mmap_noreserve.c 81 } else if ((WIFEXITED(status) != 0) && (WEXITSTATUS(status) == 0)) {
85 WIFEXITED(status) ? "exit" : "signal",
86 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status));
  /external/valgrind/none/tests/
async-sigs.c 70 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
72 WIFEXITED(status) ? "exit" : "signal",
73 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status));
128 WIFEXITED(status) ? "exit" : "signal",
129 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status));
  /external/ltp/testcases/kernel/syscalls/ptrace/
ptrace05.c 134 if (WIFEXITED(status)
157 } else if (WIFEXITED(status)) {
177 } else if (WIFEXITED(status)) {
  /external/jemalloc/test/unit/
fork.c 42 if (WIFEXITED(status)) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
4-1.c 76 if (!WIFEXITED(s)) {
4-10.c 76 if (!WIFEXITED(s)) {
4-11.c 76 if (!WIFEXITED(s)) {
4-12.c 76 if (!WIFEXITED(s)) {
4-13.c 76 if (!WIFEXITED(s)) {
4-14.c 76 if (!WIFEXITED(s)) {
4-15.c 76 if (!WIFEXITED(s)) {
4-16.c 76 if (!WIFEXITED(s)) {
4-17.c 76 if (!WIFEXITED(s)) {
4-18.c 76 if (!WIFEXITED(s)) {

Completed in 331 milliseconds

1 2 3 4 5 6 7 8 91011>>