Searched refs:WIFSTOPPED (Results 1 - 8 of 8) sorted by relevance

/external/openssh/openbsd-compat/
H A Dbsd-waitpid.h34 #undef WIFSTOPPED macro
40 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100) macro
41 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w))
/external/libppp/src/
H A Dexec.c365 } else if (WIFSTOPPED(stat)) {
/external/strace/
H A Dstrace.c734 else if (WIFSTOPPED(status)) {
1730 if (!WIFSTOPPED(status)) {
2501 if (WIFSTOPPED(status))
2576 if (!WIFSTOPPED(status)) {
H A Dprocess.c1875 if (WIFSTOPPED(status)) {
1876 tprintf("[{WIFSTOPPED(s) && WSTOPSIG(s) == %s}",
/external/valgrind/main/coregrind/
H A Dm_debugger.c46 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f) macro
340 WIFSTOPPED(status) && WSTOPSIG(status) == VKI_SIGSTOP &&
H A Dvgdb.c437 if (WIFSTOPPED(status))
438 APPEND ("WIFSTOPPED %d ", WSTOPSIG(status));
481 assert (WIFSTOPPED(status));
/external/okhttp/src/main/java/libcore/io/
H A DOsConstants.java35 public static boolean WIFSTOPPED(int status) { return (WTERMSIG(status) == 0x7f); } method in class:OsConstants
/external/mksh/src/
H A Djobs.c1299 if (WIFSTOPPED(status))

Completed in 288 milliseconds