Searched refs:WIFSIGNALED (Results 1 – 5 of 5) sorted by relevance
319 #ifndef WIFSIGNALED320 #define WIFSIGNALED(status) (((status)&0xFF) > 0 && ((status)&0xFF00) == 0) macro352 } else if (WIFSIGNALED(status)) { in UNIXProcess_waitForProcessExit()
41 import static android.system.OsConstants.WIFSIGNALED;438 assertFalse(WIFSIGNALED(0)); in test_WIFSIGNALED()439 assertTrue(WIFSIGNALED(1)); in test_WIFSIGNALED()
51 public static boolean WIFSIGNALED(int status) { throw new RuntimeException("Stub!"); } in WIFSIGNALED() method in OsConstants
127 public static boolean WIFSIGNALED(int status) { return (WTERMSIG(status + 1) >= 2); } in WIFSIGNALED() method in OsConstants
156 method public static boolean WIFSIGNALED(int);