Home
last modified time | relevance | path

Searched refs:WSTOPSIG (Results 1 – 25 of 59) sorted by relevance

123

/external/ltp/testcases/kernel/syscalls/waitpid/
Dwaitpid_common.h122 if (WSTOPSIG(status) != SIGSTOP) { in reap_children()
125 pid, WSTOPSIG(status)); in reap_children()
/external/elfutils/tests/
Dbacktrace-dwarf.c168 if (WSTOPSIG (status) != SIGABRT) in main()
169 error (1, 0, "unexpected signal %u", WSTOPSIG (status)); in main()
Dbacktrace.c293 assert (WSTOPSIG (status) == SIGUSR1); in prepare_thread()
360 assert (WSTOPSIG (status) == SIGUSR2); in exec_dump()
370 assert (WSTOPSIG (status) == SIGUSR1); in exec_dump()
/external/linux-kselftest/tools/testing/selftests/breakpoints/
Dstep_after_suspend_test.c72 if (WSTOPSIG(status) != SIGSTOP) { in run_test()
103 if (WSTOPSIG(status) != SIGTRAP) { in run_test()
Dbreakpoint_test_arm64.c138 if (WSTOPSIG(status) != SIGSTOP) { in run_test()
169 if (WSTOPSIG(status) != SIGTRAP) { in run_test()
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/rand/
Durandom_test.cc172 ASSERT_TRUE(WIFSTOPPED(status) && WSTOPSIG(status) == SIGSTOP); in GetTrace()
193 if (WIFSTOPPED(status) && WSTOPSIG(status) == SIGABRT) { in GetTrace()
199 ASSERT_TRUE(WIFSTOPPED(status) && WSTOPSIG(status) == (SIGTRAP | 0x80)); in GetTrace()
285 ASSERT_TRUE(WIFSTOPPED(status) && WSTOPSIG(status) == (SIGTRAP | 0x80)); in GetTrace()
/external/boringssl/src/crypto/fipsmodule/rand/
Durandom_test.cc172 ASSERT_TRUE(WIFSTOPPED(status) && WSTOPSIG(status) == SIGSTOP); in GetTrace()
193 if (WIFSTOPPED(status) && WSTOPSIG(status) == SIGABRT) { in GetTrace()
199 ASSERT_TRUE(WIFSTOPPED(status) && WSTOPSIG(status) == (SIGTRAP | 0x80)); in GetTrace()
285 ASSERT_TRUE(WIFSTOPPED(status) && WSTOPSIG(status) == (SIGTRAP | 0x80)); in GetTrace()
/external/libprotobuf-mutator/examples/libfuzzer/
Dlibfuzzer_example_test.cc24 int GetError(int exit_code) { return WSTOPSIG(exit_code); } in GetError()
/external/linux-kselftest/tools/testing/selftests/ptrace/
Dget_syscall_info.c146 switch (WSTOPSIG(status)) { in TEST()
259 WSTOPSIG(status)); in TEST()
/external/rust/crates/nix/src/sys/
Dwait.rs144 Signal::try_from(libc::WSTOPSIG(status)) in stop_signal()
153 libc::WSTOPSIG(status) == libc::SIGTRAP | 0x80 in syscall_stop()
/external/strace/tests-m32/
Dtest_ucopy.c129 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { in test_ucopy()
Dwait4.c172 assert(WIFSTOPPED(*s) && WSTOPSIG(*s) == SIGSTOP); in main()
/external/strace/tests/
Dtest_ucopy.c129 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { in test_ucopy()
Dwait4.c172 assert(WIFSTOPPED(*s) && WSTOPSIG(*s) == SIGSTOP); in main()
/external/strace/tests-mx32/
Dtest_ucopy.c129 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { in test_ucopy()
Dwait4.c172 assert(WIFSTOPPED(*s) && WSTOPSIG(*s) == SIGSTOP); in main()
/external/strace/
Dwait.c75 int sig = WSTOPSIG(status); in printstatus()
DREADME-linux-ptrace128 WSTOPSIG(status) macro returns ((status >> 8) & 0xff) value).
145 WIFSTOPPED(status) == true, WSTOPSIG(status) == signal. If
146 WSTOPSIG(status) == SIGTRAP, this may be a different kind of
148 details. If WSTOPSIG(status) == stopping signal, this may be a
164 Note that sig value may be different from WSTOPSIG(status) value -
214 WIFSTOPPED(status) == true, WSTOPSIG(status) == signal. The same result
246 WIFSTOPPED(status) == true, WSTOPSIG(status) == SIGTRAP. Additional bit
293 waitpid returning with WIFSTOPPED(status) == true, WSTOPSIG(status) ==
295 WSTOPSIG(status) == (SIGTRAP | 0x80).
Dstrace.c959 sig = WSTOPSIG(status); in detach()
1413 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { in startup_child()
2010 xsprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status))); in print_debug_info()
2384 const unsigned int sig = WSTOPSIG(status); in next_event()
2508 restart_sig = WSTOPSIG(status); in dispatch_event()
2518 restart_sig = WSTOPSIG(status); in dispatch_event()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_stoptheworld_linux_libcdep.cc156 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) { in SuspendThread()
158 (void*)(uptr)WSTOPSIG(status)); in SuspendThread()
/external/llvm-project/lldb/source/Plugins/Process/Linux/
DSingleStepCheck.cpp124 if (WSTOPSIG(status) != SIGTRAP) { in WorkaroundNeeded()
/external/elfutils/libdwfl/
Dlinux-pid-attach.c104 if (WSTOPSIG (status) == SIGSTOP) in __libdwfl_ptrace_attach()
107 (void *) (uintptr_t) WSTOPSIG (status)) != 0) in __libdwfl_ptrace_attach()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_stoptheworld_linux_libcdep.cpp175 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) { in SuspendThread()
177 (void*)(uptr)WSTOPSIG(status)); in SuspendThread()
/external/llvm-project/lldb/source/Host/common/
DHost.cpp223 signal = WSTOPSIG(status); in MonitorChildProcessThreadFunction()
666 return {Stop, uint8_t(WSTOPSIG(wstatus))}; in Decode()
/external/python/cpython2/Lib/plat-irix6/
DWAIT.py18 def WSTOPSIG(stat): return ((_W_INT(stat)>>8)&0377) function

123