/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/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/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/elfutils/src/tests/ |
D | backtrace.c | 274 assert (WSTOPSIG (status) == SIGUSR1); in prepare_thread() 343 assert (WSTOPSIG (status) == SIGUSR2); in exec_dump() 354 assert (WSTOPSIG (status) == SIGUSR1); in exec_dump()
|
D | backtrace-dwarf.c | 155 assert (WSTOPSIG (status) == SIGABRT); in main()
|
D | backtrace-data.c | 291 assert (WSTOPSIG (status) == SIGUSR1); in main()
|
/external/ltrace/sysdeps/linux-gnu/m68k/ |
D | trace.c | 55 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/ltrace/sysdeps/linux-gnu/aarch64/ |
D | trace.c | 49 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/ltrace/sysdeps/linux-gnu/cris/ |
D | trace.c | 53 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/ltrace/sysdeps/linux-gnu/alpha/ |
D | trace.c | 53 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/ltrace/sysdeps/linux-gnu/sparc/ |
D | trace.c | 50 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/ltrace/sysdeps/linux-gnu/ia64/ |
D | trace.c | 76 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stoptheworld_linux_libcdep.cc | 145 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) { in SuspendThread() 146 internal_ptrace(PTRACE_CONT, tid, 0, (void*)(uptr)WSTOPSIG(status)); in SuspendThread()
|
/external/ltrace/sysdeps/linux-gnu/x86/ |
D | trace.c | 81 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/elfutils/src/libdwfl/ |
D | linux-pid-attach.c | 98 if (WSTOPSIG (status) == SIGSTOP) in __libdwfl_ptrace_attach() 101 (void *) (uintptr_t) WSTOPSIG (status)) != 0) in __libdwfl_ptrace_attach()
|
/external/strace/ |
D | wait.c | 50 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 | 862 sig = WSTOPSIG(status); in detach() 1272 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { in startup_child() 1841 sprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status))); in print_debug_info() 2176 sig = WSTOPSIG(status); in trace()
|
/external/ltrace/sysdeps/linux-gnu/s390/ |
D | trace.c | 79 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/ltrace/sysdeps/linux-gnu/ppc/ |
D | trace.c | 66 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/ltrace/sysdeps/linux-gnu/mips/ |
D | trace.c | 93 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/ltrace/sysdeps/linux-gnu/ |
D | events.c | 307 stop_signal = WSTOPSIG(status); in next_event()
|
/external/ltrace/sysdeps/linux-gnu/metag/ |
D | trace.c | 77 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) { in syscall_p()
|
/external/valgrind/coregrind/ |
D | vgdb-invoker-ptrace.c | 232 APPEND ("WIFSTOPPED %d ", WSTOPSIG(status)); in status_image() 278 signal_received = WSTOPSIG(status); in waitstopped()
|