Home
last modified time | relevance | path

Searched defs:WEXITSTATUS (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DUnix.h63 # define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8) macro
/external/openssh/openbsd-compat/
Dbsd-waitpid.h40 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1) macro
/external/ipsec-tools/src/racoon/
Dsession.c44 # define WEXITSTATUS(s) ((unsigned)(s) >> 8) macro
/external/icu/icu4c/source/tools/tzcode/
Dprivate.h98 #define WEXITSTATUS(status) (((status) >> 8) & 0xff) macro
/external/python/cpython2/Lib/plat-irix6/
DWAIT.py14 def WEXITSTATUS(stat): return ((_W_INT(stat)>>8)&0377) function
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_unix_events.py1136 def WEXITSTATUS(self, status): member in ChildWatcherTestsMixin
/external/python/cpython2/Modules/
Dposixmodule.c305 #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1) macro
/external/python/cpython3/Modules/
Dposixmodule.c335 #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1) macro