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

1 2 3

  /external/honggfuzz/
subproc.c 74 if (WSTOPSIG(status) == (SIGTRAP | 0x80)) {
75 snprintf(str, len, "STOPPED (linux syscall): %d (%s)", WSTOPSIG(status),
76 strsignal(WSTOPSIG(status)));
81 if (WSTOPSIG(status) == SIGTRAP && __LINUX_WPTRACEEVENT(status) != 0) {
84 snprintf(str, len, "EVENT (Linux) - fork - with signal: %d (%s)", WSTOPSIG(status),
85 strsignal(WSTOPSIG(status)));
88 snprintf(str, len, "EVENT (Linux) - vfork - with signal: %d (%s)", WSTOPSIG(status),
89 strsignal(WSTOPSIG(status)));
92 snprintf(str, len, "EVENT (Linux) - clone - with signal: %d (%s)", WSTOPSIG(status),
93 strsignal(WSTOPSIG(status)))
    [all...]
  /bionic/tests/headers/posix/
sys_wait_h.c 53 #if !defined(WSTOPSIG)
54 #error WSTOPSIG
stdlib_h.c 62 #if !defined(WSTOPSIG)
63 #error WSTOPSIG
  /bionic/libc/include/bits/
wait.h 39 #define WSTOPSIG(s) WEXITSTATUS(s)
  /external/libunwind/tests/
test-ptrace.c 250 || (WIFSTOPPED (status) && WSTOPSIG (status) != SIGTRAP))
266 pending_sig = WSTOPSIG (status);
268 if (WSTOPSIG (status) == SIGKILL)
272 if (WSTOPSIG (status) == SIGUSR1)
274 else if (WSTOPSIG (status) == SIGUSR2)
277 if (WSTOPSIG (status) != SIGUSR1 && WSTOPSIG (status) != SIGUSR2)
284 WSTOPSIG (status));
  /external/ltp/testcases/kernel/syscalls/waitpid/
waitpid_common.h 135 if (WSTOPSIG(status) != SIGSTOP) {
138 pid, WSTOPSIG(status));
  /external/linux-kselftest/tools/testing/selftests/breakpoints/
breakpoint_test_arm64.c 147 if (WSTOPSIG(status) != SIGSTOP) {
178 if (WSTOPSIG(status) != SIGTRAP) {
step_after_suspend_test.c 81 if (WSTOPSIG(status) != SIGSTOP) {
112 if (WSTOPSIG(status) != SIGTRAP) {
  /system/extras/runconuid/
runconuid.cpp 218 if (WIFSTOPPED(status) && WSTOPSIG(status) == SIGTRAP) {
223 if (WIFSTOPPED(status) && WSTOPSIG(status) & 0x80) {
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
wait.h 53 #define WSTOPSIG(x) ((int)(((unsigned int)_W_INT(x)) >> 8) & 0xff)
  /external/strace/tests/
test_ucopy.c 129 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) {
wait4.c 172 assert(WIFSTOPPED(*s) && WSTOPSIG(*s) == SIGSTOP);
173 tprintf("wait4(%d, [{WIFSTOPPED(s) && WSTOPSIG(s) == SIGSTOP}]"
  /external/strace/tests-m32/
test_ucopy.c 129 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) {
wait4.c 172 assert(WIFSTOPPED(*s) && WSTOPSIG(*s) == SIGSTOP);
173 tprintf("wait4(%d, [{WIFSTOPPED(s) && WSTOPSIG(s) == SIGSTOP}]"
  /external/strace/tests-mx32/
test_ucopy.c 129 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) {
wait4.c 172 assert(WIFSTOPPED(*s) && WSTOPSIG(*s) == SIGSTOP);
173 tprintf("wait4(%d, [{WIFSTOPPED(s) && WSTOPSIG(s) == SIGSTOP}]"
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
wait.h 84 # define WSTOPSIG(status) __WSTOPSIG (__WAIT_INT (status))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
wait.h 84 # define WSTOPSIG(status) __WSTOPSIG (__WAIT_INT (status))
  /cts/tests/tests/debug/libdebugtest/
android_debug_cts.cpp 67 assert_or_exit(WSTOPSIG(status) == SIGSTOP);
  /external/elfutils/tests/
backtrace-dwarf.c 160 assert (WSTOPSIG (status) == SIGABRT);
backtrace.c 280 assert (WSTOPSIG (status) == SIGUSR1);
349 assert (WSTOPSIG (status) == SIGUSR2);
360 assert (WSTOPSIG (status) == SIGUSR1);
  /external/strace/
wait.c 75 int sig = WSTOPSIG(status);
76 tprintf("[{WIFSTOPPED(s) && WSTOPSIG(s) == %s%s}",
  /art/test/137-cfi/
cfi.cc 165 return WSTOPSIG(status);
  /bionic/tests/
sys_ptrace_test.cpp 189 ASSERT_EQ(SIGSTOP, WSTOPSIG(status)) << "Status was: " << status;
201 ASSERT_EQ(SIGTRAP, WSTOPSIG(status)) << "Status was: " << status;
359 ASSERT_EQ(SIGSTOP, WSTOPSIG(status)) << "Status was: " << status;
371 ASSERT_EQ(SIGTRAP, WSTOPSIG(status)) << "Status was: " << status;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld_linux_libcdep.cc 156 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) {
158 (void*)(uptr)WSTOPSIG(status));

Completed in 330 milliseconds

1 2 3