Home
last modified time | relevance | path

Searched refs:WIFSIGNALED (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/native/
DUNIXProcess_md.c319 #ifndef WIFSIGNALED
320 #define WIFSIGNALED(status) (((status)&0xFF) > 0 && ((status)&0xFF00) == 0) macro
352 } else if (WIFSIGNALED(status)) { in UNIXProcess_waitForProcessExit()
/libcore/luni/src/test/java/libcore/android/system/
DOsConstantsTest.java41 import static android.system.OsConstants.WIFSIGNALED;
438 assertFalse(WIFSIGNALED(0)); in test_WIFSIGNALED()
439 assertTrue(WIFSIGNALED(1)); in test_WIFSIGNALED()
/libcore/luni/annotations/flagged_api/android/system/
DOsConstants.annotated.java51 public static boolean WIFSIGNALED(int status) { throw new RuntimeException("Stub!"); } in WIFSIGNALED() method in OsConstants
/libcore/luni/src/main/java/android/system/
DOsConstants.java127 public static boolean WIFSIGNALED(int status) { return (WTERMSIG(status + 1) >= 2); } in WIFSIGNALED() method in OsConstants
/libcore/api/
Dcurrent.txt156 method public static boolean WIFSIGNALED(int);