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

/bionic/libc/include/sys/
H A Dwait.h39 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) macro
42 #define WSTOPSIG(s) WEXITSTATUS(s)
/bionic/tools/versioner/current/sys/
H A Dwait.h39 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) macro
42 #define WSTOPSIG(s) WEXITSTATUS(s)
/bionic/tests/
H A Dutils.h135 ASSERT_EQ(expected_exit_status, WEXITSTATUS(status));
H A Dsys_ptrace_test.cpp451 if (WEXITSTATUS(result) != 0) {
485 if (WEXITSTATUS(result) != 0) {
486 printf("worker exited with status %d\n", WEXITSTATUS(result));
H A Dstdlib_test.cpp315 ASSERT_EQ(0, WEXITSTATUS(status));
319 ASSERT_EQ(1, WEXITSTATUS(status));
H A Dsched_test.cpp42 ASSERT_EQ(123, WEXITSTATUS(status));
H A Dgtest_main.cpp314 return (result != -1 && WEXITSTATUS(result) == 0);
821 if (result != pid || WEXITSTATUS(exit_status) != 0) {
853 int exitcode = WEXITSTATUS(child_proc.exit_status);
/bionic/libc/tzcode/
H A Dprivate.h129 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
135 #ifndef WEXITSTATUS
136 #define WEXITSTATUS(status) (((status) >> 8) & 0xff) macro
137 #endif /* !defined WEXITSTATUS */

Completed in 115 milliseconds