/external/libunwind/tests/ |
D | test-ptrace.c | 250 || (WIFSTOPPED (status) && WSTOPSIG (status) != SIGTRAP)) in main() 266 pending_sig = WSTOPSIG (status); in main() 268 if (WSTOPSIG (status) == SIGKILL) in main() 272 if (WSTOPSIG (status) == SIGUSR1) in main() 274 else if (WSTOPSIG (status) == SIGUSR2) in main() 277 if (WSTOPSIG (status) != SIGUSR1 && WSTOPSIG (status) != SIGUSR2) in main() 284 WSTOPSIG (status)); in main()
|
/external/bison/lib/ |
D | sys_wait.in.h | 74 # ifndef WSTOPSIG 75 # define WSTOPSIG(x) (((x) >> 8) & 0x7f) macro 103 # define WSTOPSIG(x) 0
|
/external/linux-kselftest/tools/testing/selftests/breakpoints/ |
D | step_after_suspend_test.c | 79 if (WSTOPSIG(status) != SIGSTOP) { in run_test() 106 if (WSTOPSIG(status) != SIGTRAP) { in run_test()
|
D | breakpoint_test.c | 273 if (WSTOPSIG(status) == SIGTRAP) { in check_success()
|
/external/bison/linux-lib/sys/ |
D | wait.h | 376 # ifndef WSTOPSIG 377 # define WSTOPSIG(x) (((x) >> 8) & 0x7f) macro 405 # define WSTOPSIG(x) 0 macro
|
/external/bison/darwin-lib/sys/ |
D | wait.h | 376 # ifndef WSTOPSIG 377 # define WSTOPSIG(x) (((x) >> 8) & 0x7f) macro 405 # define WSTOPSIG(x) 0 macro
|
/external/ltp/testcases/kernel/syscalls/waitpid/ |
D | waitpid08.c | 229 if (WSTOPSIG(status) != SIGSTOP) { in do_child_1() 237 WSTOPSIG(status)); in do_child_1()
|
D | waitpid13.c | 184 if (WSTOPSIG(status) != SIGSTOP) { in main() 258 if (WSTOPSIG(status) != SIGSTOP) { in main()
|
/external/elfutils/tests/ |
D | backtrace.c | 280 assert (WSTOPSIG (status) == SIGUSR1); in prepare_thread() 349 assert (WSTOPSIG (status) == SIGUSR2); in exec_dump() 360 assert (WSTOPSIG (status) == SIGUSR1); in exec_dump()
|
D | backtrace-dwarf.c | 160 assert (WSTOPSIG (status) == SIGABRT); in main()
|
D | backtrace-data.c | 293 assert (WSTOPSIG (status) == SIGUSR1); in main()
|
/external/strace/ |
D | wait.c | 74 int sig = WSTOPSIG(status); in printstatus()
|
D | README-linux-ptrace | 128 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).
|
D | strace.c | 937 sig = WSTOPSIG(status); in detach() 1413 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { in startup_child() 1999 sprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status))); in print_debug_info() 2371 sig = WSTOPSIG(status); in trace()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stoptheworld_linux_libcdep.cc | 156 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) { in SuspendThread() 158 (void*)(uptr)WSTOPSIG(status)); in SuspendThread()
|
/external/elfutils/libdwfl/ |
D | linux-pid-attach.c | 102 if (WSTOPSIG (status) == SIGSTOP) in __libdwfl_ptrace_attach() 105 (void *) (uintptr_t) WSTOPSIG (status)) != 0) in __libdwfl_ptrace_attach()
|
/external/strace/tests-mx32/ |
D | wait4.c | 171 assert(WIFSTOPPED(*s) && WSTOPSIG(*s) == SIGSTOP); in main()
|
D | ptrace.c | 131 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { in test_peeksiginfo()
|
/external/strace/tests/ |
D | wait4.c | 171 assert(WIFSTOPPED(*s) && WSTOPSIG(*s) == SIGSTOP); in main()
|
D | ptrace.c | 131 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { in test_peeksiginfo()
|
/external/strace/tests-m32/ |
D | wait4.c | 171 assert(WIFSTOPPED(*s) && WSTOPSIG(*s) == SIGSTOP); in main()
|
D | ptrace.c | 131 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { in test_peeksiginfo()
|
/external/valgrind/coregrind/ |
D | vgdb-invoker-ptrace.c | 232 APPEND ("WIFSTOPPED %d ", WSTOPSIG(status)); in status_image() 278 signal_received = WSTOPSIG(status); in waitstopped()
|
/external/seccomp-tests/linux/ |
D | seccomp_bpf.c | 2164 ASSERT_EQ(SIGTRAP, WSTOPSIG(status)); in TEST() 2184 ASSERT_EQ(SIGSTOP, WSTOPSIG(status)); in TEST() 2194 ASSERT_EQ(SIGCONT, WSTOPSIG(status)); in TEST() 2200 ASSERT_EQ(SIGTRAP, WSTOPSIG(status)); in TEST()
|
/external/linux-kselftest/tools/testing/selftests/seccomp/ |
D | seccomp_bpf.c | 2340 ASSERT_EQ(SIGTRAP, WSTOPSIG(status)); in TEST() 2360 ASSERT_EQ(SIGSTOP, WSTOPSIG(status)); in TEST() 2370 ASSERT_EQ(SIGCONT, WSTOPSIG(status)); in TEST() 2376 ASSERT_EQ(SIGTRAP, WSTOPSIG(status)); in TEST()
|