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

1 2 3 4 5 6 7 8

  /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/llvm/lib/Support/Unix/
Unix.h 54 #ifndef WIFEXITED
55 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
fork.cc 20 assert(WIFEXITED(status));
fork_threaded.cc 34 assert(WIFEXITED(status));
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_nolibc_test.cc 28 EXPECT_EQ(true, WIFEXITED(status));
  /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/main/none/tests/
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));
  /bionic/libc/include/sys/
wait.h 44 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /development/ndk/platforms/android-3/include/sys/
wait.h 43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /development/ndk/platforms/android-9/include/sys/
wait.h 44 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /external/chromium/testing/gmock/test/
gmock_test_utils.py 90 if os.WIFEXITED(exit_code):
  /external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
clone_test.cc 34 if (wait_result == clone_pid && WIFEXITED(status)) {
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
wait.h 43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
wait.h 43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/sys/
wait.h 43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/sys/
wait.h 43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/sys/
wait.h 43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/sys/
wait.h 43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/sys/
wait.h 43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/sys/
wait.h 44 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/sys/
wait.h 43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/sys/
wait.h 43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/sys/
wait.h 44 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/sys/
wait.h 44 #define WIFEXITED(s) (WTERMSIG(s) == 0)
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/sys/
wait.h 44 #define WIFEXITED(s) (WTERMSIG(s) == 0)

Completed in 751 milliseconds

1 2 3 4 5 6 7 8