/external/selinux/libsepol/cil/test/unit/ |
D | test_integration.c | 45 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT)) in test_integration() 50 if (WIFSIGNALED(status1) && (WTERMSIG(status1) == SIGINT || WTERMSIG(status1) == SIGQUIT)) in test_integration() 55 if (WIFSIGNALED(status2) && (WTERMSIG(status2) == SIGINT || WTERMSIG(status2) == SIGQUIT)) in test_integration() 71 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT)) in test_min_policy()
|
/external/openssh/openbsd-compat/ |
D | bsd-waitpid.h | 33 #undef WIFSIGNALED 39 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w)) macro 41 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1)
|
/external/ltp/testcases/kernel/containers/pidns/ |
D | pidns17.c | 106 if (!(WIFSIGNALED(status) || WTERMSIG(status) == SIGUSR1)) { in child_fn() 118 WIFSIGNALED(status), WTERMSIG(status)); in child_fn() 155 else if (WIFSIGNALED(status)) in main()
|
D | pidns13.c | 205 if (WIFSIGNALED(status) && WTERMSIG(status)) in main() 212 if (WIFSIGNALED(status) && WTERMSIG(status)) in main()
|
D | pidns02.c | 107 } else if (WIFSIGNALED(status)) { in main()
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_unix_events.py | 1173 def WIFSIGNALED(self, status): member in ChildWatcherTestsMixin 1181 self.assertTrue(self.WIFSIGNALED(status)) 1196 patch('os.WIFSIGNALED', self.WIFSIGNALED) as m_WIFSIGNALED, \ 1216 self.assertFalse(m.WIFSIGNALED.called) 1225 self.assertFalse(m.WIFSIGNALED.called) 1239 m.WIFSIGNALED.reset_mock() 1252 m.WIFSIGNALED.reset_mock() 1262 self.assertFalse(m.WIFSIGNALED.called) 1279 self.assertFalse(m.WIFSIGNALED.called) 1290 self.assertFalse(m.WIFSIGNALED.called) [all …]
|
/external/ltp/testcases/kernel/syscalls/pause/ |
D | pause03.c | 74 if (WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL) { in main() 79 if (WIFSIGNALED(status)) { in main()
|
/external/ltp/testcases/kernel/syscalls/switch/ |
D | endian_switch01.c | 46 if (WIFSIGNALED(status)) { in check_le_switch_supported() 74 if (WIFSIGNALED(status)) { in test_le_switch()
|
/external/ltp/testcases/kernel/syscalls/ptrace/ |
D | ptrace05.c | 125 if (WIFSIGNALED(status)) { in main() 159 } else if (WIFSIGNALED(status)) { in main()
|
/external/ltp/testcases/kernel/security/umip/ |
D | umip_basic_test.c | 123 if (WIFSIGNALED(status) && WTERMSIG(status) == SIGSEGV) { in verify_umip_instruction() 134 if (WIFSIGNALED(status) && WTERMSIG(status) == SIGSEGV) { in verify_umip_instruction()
|
/external/ltp/testcases/kernel/syscalls/request_key/ |
D | request_key03.c | 143 } else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL) { in test_with_key_type() 157 } else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL) { in test_with_key_type()
|
/external/ltp/testcases/kernel/mem/tunable/ |
D | min_free_kbytes.c | 129 if (!WIFSIGNALED(status) || WTERMSIG(status) != SIGKILL) in test_tune() 150 } else if (!WIFSIGNALED(status) || in test_tune()
|
/external/ltp/testcases/kernel/syscalls/prctl/ |
D | prctl04.c | 100 if (WIFSIGNALED(childstatus) && WTERMSIG(childstatus) == SIGSYS) in check_filter_mode_inherit() 195 if (WIFSIGNALED(status) && WTERMSIG(status) == tc->exp_signal) { in verify_prctl()
|
/external/igt-gpu-tools/lib/tests/ |
D | igt_tests_common.h | 46 internal_assert(WIFSIGNALED(wstatus) && in internal_assert_wsignaled()
|
/external/strace/tests/ |
D | run_expect_termsig.c | 57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1])); in main()
|
/external/strace/tests-m32/ |
D | run_expect_termsig.c | 57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1])); in main()
|
D | pc.c | 88 assert(WIFSIGNALED(status)); in main()
|
/external/strace/tests-mx32/ |
D | run_expect_termsig.c | 57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1])); in main()
|
/external/ltp/lib/ |
D | tst_status.c | 40 if (WIFSIGNALED(status)) in tst_strstatus()
|
/external/google-breakpad/src/common/linux/tests/ |
D | crash_generator.cc | 250 if (!WIFSIGNALED(status) || WTERMSIG(status) != crash_signal) { in CreateChildCrash() 253 status, pid, WIFSIGNALED(status) ? "true" : "false", in CreateChildCrash()
|
/external/ltp/testcases/kernel/syscalls/waitpid/ |
D | waitpid01.c | 41 if (!WIFSIGNALED(status)) { in run()
|
/external/ltp/testcases/kernel/syscalls/setrlimit/ |
D | setrlimit05.c | 52 if (WIFSIGNALED(status) && WTERMSIG(status) == SIGSEGV) { in verify_setrlimit()
|
/external/linux-kselftest/tools/testing/selftests/safesetid/ |
D | safesetid-test.c | 243 } else if (WIFSIGNALED(wstatus)) { in test_setuid() 255 } while (!WIFEXITED(wstatus) && !WIFSIGNALED(wstatus)); in test_setuid()
|
/external/ltp/testcases/kernel/crypto/ |
D | af_alg04.c | 46 else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL) in run()
|
/external/ltp/testcases/kernel/syscalls/abort/ |
D | abort01.c | 45 if (!WIFSIGNALED(status)) { in verify_abort()
|