Searched refs:WEXITSTATUS (Results 1 – 5 of 5) sorted by relevance
35 import static android.system.OsConstants.WEXITSTATUS;397 assertEquals(0, WEXITSTATUS(0x0000)); in test_WEXITSTATUS()398 assertEquals(0, WEXITSTATUS(0x00DE)); in test_WEXITSTATUS()399 assertEquals(0xF0, WEXITSTATUS(0xF000)); in test_WEXITSTATUS()400 assertEquals(0xAB, WEXITSTATUS(0xAB12)); in test_WEXITSTATUS()
315 #ifndef WEXITSTATUS316 #define WEXITSTATUS(status) (((status)>>8)&0xFF) macro351 return WEXITSTATUS(status); in UNIXProcess_waitForProcessExit()
97 public static int WEXITSTATUS(int status) { return (status & 0xff00) >> 8; } in WEXITSTATUS() method in OsConstants112 public static int WSTOPSIG(int status) { return WEXITSTATUS(status); } in WSTOPSIG()
39 public static int WEXITSTATUS(int status) { throw new RuntimeException("Stub!"); } in WEXITSTATUS() method in OsConstants
154 method public static int WEXITSTATUS(int);