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

1 2 3 4 5 6 7 8 91011

  /external/fio/os/windows/posix/include/sys/
wait.h 4 #define WIFSIGNALED(a) 0
  /external/selinux/libsepol/cil/test/unit/
test_integration.c 45 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT))
50 if (WIFSIGNALED(status1) && (WTERMSIG(status1) == SIGINT || WTERMSIG(status1) == SIGQUIT))
55 if (WIFSIGNALED(status2) && (WTERMSIG(status2) == SIGINT || WTERMSIG(status2) == SIGQUIT))
71 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT))
  /bionic/tests/headers/posix/
sys_wait_h.c 47 #if !defined(WIFSIGNALED)
48 #error WIFSIGNALED
  /external/strace/tests/
run_expect_termsig.c 57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1]));
  /external/strace/tests-m32/
run_expect_termsig.c 57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1]));
  /external/strace/tests-mx32/
run_expect_termsig.c 57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1]));
  /external/ltp/testcases/kernel/containers/pidns/
pidns17.c 106 if (!(WIFSIGNALED(status) || WTERMSIG(status) == SIGUSR1)) {
112 * WIFEXITED and WEXITSTATUS, and WIFSIGNALED and
118 WIFSIGNALED(status), WTERMSIG(status));
155 else if (WIFSIGNALED(status))
pidns13.c 213 if (WIFSIGNALED(status) && WTERMSIG(status))
220 if (WIFSIGNALED(status) && WTERMSIG(status))
pidns01.c 111 else if (WIFSIGNALED(status)) {
pidns02.c 107 } else if (WIFSIGNALED(status)) {
pidns03.c 102 if (WIFSIGNALED(status)) {
pidns04.c 137 } else if (WIFSIGNALED(status)) {
  /bionic/libc/include/bits/
wait.h 43 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /external/jemalloc/test/unit/
fork.c 37 if (WIFSIGNALED(status)) {
  /external/ltp/lib/
tst_status.c 52 if (WIFSIGNALED(status))
  /external/ltp/testcases/kernel/syscalls/pause/
pause03.c 74 if (WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL) {
79 if (WIFSIGNALED(status)) {
  /external/ltp/testcases/kernel/syscalls/switch/
endian_switch01.c 58 if (WIFSIGNALED(status)) {
86 if (WIFSIGNALED(status)) {
  /cts/hostsidetests/seccomp/app/jni/
android_seccomp_cts_app_SeccompDeviceTest.cpp 59 if (WIFSIGNALED(status)) {
  /external/libmicrohttpd/src/testzzuf/
socat.c 85 if (WIFSIGNALED (status))
  /external/ltp/testcases/kernel/syscalls/add_key/
add_key04.c 81 else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL)
  /external/ltp/testcases/kernel/syscalls/setrlimit/
setrlimit05.c 59 if (WIFSIGNALED(status) && WTERMSIG(status) == SIGSEGV) {
  /external/valgrind/none/tests/solaris/
block_all_signals.c 40 if (WIFSIGNALED(status)) {
  /external/ltp/testcases/kernel/syscalls/ptrace/
ptrace05.c 121 if (WIFSIGNALED(status)) {
155 } else if (WIFSIGNALED(status)) {
  /external/ltp/testcases/kernel/syscalls/request_key/
request_key03.c 155 } else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL) {
169 } else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL) {
  /cts/tests/tests/os/jni/
android_os_cts_OSFeatures.cpp 77 return WIFSIGNALED(status) && (WTERMSIG(status) == SIGSYS);

Completed in 589 milliseconds

1 2 3 4 5 6 7 8 91011