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

1 2 3 4 5 6 7 8 91011>>

  /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));
  /bionic/tests/headers/posix/
sys_wait_h.c 44 #if !defined(WIFEXITED)
45 #error WIFEXITED
  /external/swiftshader/third_party/LLVM/lib/Support/Unix/
Unix.h 66 #ifndef WIFEXITED
67 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
  /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 109 if (WIFEXITED(status)
132 } else if (WIFEXITED(status)) {
152 } else if (WIFEXITED(status)) {
  /bionic/libc/include/bits/
wait.h 41 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /external/iproute2/lib/
exec.c 28 if (WIFEXITED(status)) {
  /external/jemalloc/test/unit/
fork.c 42 if (WIFEXITED(status)) {
  /external/ltp/lib/
tst_status.c 49 if (WIFEXITED(status))
  /external/ltp/testcases/kernel/syscalls/setrlimit/
setrlimit04.c 51 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
  /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)) {

Completed in 3213 milliseconds

1 2 3 4 5 6 7 8 91011>>