Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DUnix.h67 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
/external/openssh/openbsd-compat/
Dbsd-waitpid.h37 #define WIFEXITED(w) (!((_W_INT(w)) & 0377)) macro
/external/ipsec-tools/src/racoon/
Dsession.c47 # define WIFEXITED(s) (((s) & 255) == 0) macro
/external/icu/icu4c/source/tools/tzcode/
Dprivate.h95 #define WIFEXITED(status) (((status) & 0xff) == 0) macro
/external/python/cpython2/Lib/plat-irix6/
DWAIT.py12 def WIFEXITED(stat): return ((_W_INT(stat)&0377)==0) function
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_unix_events.py1130 def WIFEXITED(self, status): member in ChildWatcherTestsMixin
/external/python/cpython2/Modules/
Dposixmodule.c301 #define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump) macro
/external/python/cpython3/Modules/
Dposixmodule.c331 #define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump) macro