/external/openssh/openbsd-compat/ |
H A D | bsd-waitpid.h | 34 #undef WIFSTOPPED macro 40 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100) macro 41 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w))
|
/external/bison/lib/ |
H A D | sys_wait.in.h | 51 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x) 59 # ifndef WIFSTOPPED 60 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) macro 73 /* The stopping signal. Only to be accessed if WIFSTOPPED(x) is true. */ 95 # define WIFSTOPPED(x) 0
|
H A D | wait-process.c | 321 /* One of WIFSIGNALED (status), WIFEXITED (status), WIFSTOPPED (status) 324 if (!WIFSTOPPED (status))
|
/external/ltrace/sysdeps/linux-gnu/m68k/ |
H A D | trace.c | 54 if (WIFSTOPPED(status)
|
/external/ltrace/sysdeps/linux-gnu/aarch64/ |
H A D | trace.c | 48 if (WIFSTOPPED(status)
|
/external/ltrace/sysdeps/linux-gnu/alpha/ |
H A D | trace.c | 52 if (WIFSTOPPED(status)
|
/external/ltrace/sysdeps/linux-gnu/cris/ |
H A D | trace.c | 52 if (WIFSTOPPED(status)
|
/external/ltrace/sysdeps/linux-gnu/ia64/ |
H A D | trace.c | 75 if (WIFSTOPPED(status)
|
/external/ltrace/sysdeps/linux-gnu/sparc/ |
H A D | trace.c | 49 if (WIFSTOPPED(status)
|
/external/bison/darwin-lib/sys/ |
H A D | wait.h | 353 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x) 361 # ifndef WIFSTOPPED 362 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) macro 375 /* The stopping signal. Only to be accessed if WIFSTOPPED(x) is true. */ 397 # define WIFSTOPPED(x) 0 macro
|
/external/bison/linux-lib/sys/ |
H A D | wait.h | 353 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x) 361 # ifndef WIFSTOPPED 362 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) macro 375 /* The stopping signal. Only to be accessed if WIFSTOPPED(x) is true. */ 397 # define WIFSTOPPED(x) 0 macro
|
/external/ltrace/sysdeps/linux-gnu/ |
H A D | events.c | 280 if (WIFSTOPPED(status)) { 295 if (WIFSTOPPED(status) && (status>>16 == PTRACE_EVENT_EXEC)) { 300 if (!WIFSTOPPED(status)) {
|
/external/elfutils/src/tests/ |
H A D | backtrace-dwarf.c | 154 assert (WIFSTOPPED (status));
|
H A D | backtrace.c | 273 assert (WIFSTOPPED (status)); 341 assert (WIFSTOPPED (status)); 352 assert (WIFSTOPPED (status));
|
H A D | backtrace-data.c | 290 assert (WIFSTOPPED (status));
|
/external/ltrace/sysdeps/linux-gnu/x86/ |
H A D | trace.c | 80 if (WIFSTOPPED(status)
|
/external/strace/ |
H A D | wait.c | 49 if (WIFSTOPPED(status)) { 51 tprintf("[{WIFSTOPPED(s) && WSTOPSIG(s) == %s%s}",
|
H A D | strace.c | 849 if (!WIFSTOPPED(status)) { 1272 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) { 1840 if (WIFSTOPPED(status)) 1841 sprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status))); 1871 if (!WIFSTOPPED(status)) { 2089 if (!WIFSTOPPED(status)) 2106 if (WIFSTOPPED(status)) 2159 if (!WIFSTOPPED(status)) {
|
/external/ltrace/sysdeps/linux-gnu/ppc/ |
H A D | trace.c | 65 if (WIFSTOPPED(status)
|
/external/ltrace/sysdeps/linux-gnu/s390/ |
H A D | trace.c | 78 if (WIFSTOPPED(status)
|
/external/libunwind/tests/ |
H A D | test-ptrace.c | 250 || (WIFSTOPPED (status) && WSTOPSIG (status) != SIGTRAP))
|
/external/ltrace/sysdeps/linux-gnu/mips/ |
H A D | trace.c | 92 if (WIFSTOPPED(status)
|
/external/openssh/ |
H A D | sandbox-systrace.c | 129 if (!WIFSTOPPED(status)) {
|
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_stoptheworld_linux_libcdep.cc | 145 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) {
|
/external/elfutils/src/libdwfl/ |
H A D | linux-pid-attach.c | 90 if (waitpid (tid, &status, __WALL) != tid || !WIFSTOPPED (status))
|