Home
last modified time | relevance | path

Searched refs:WIFCONTINUED (Results 1 – 19 of 19) sorted by relevance

/external/honggfuzz/
Dsubproc.h32 #ifndef WIFCONTINUED
33 #define WIFCONTINUED(x) WEXITSTATUS(0) macro
Dsubproc.c61 if (WIFCONTINUED(status)) { in subproc_StatusToStr()
/external/strace/
Dwait.c91 #ifdef WIFCONTINUED in printstatus()
92 else if (WIFCONTINUED(status)) { in printstatus()
DChangeLog16009 WIFCONTINUED status.
16011 * strace.c (print_debug_info) [WIFCONTINUED]: Remove.
40192 [WIFCONTINUED]: Add WIFCONTINUED support.
50981 * strace.c (trace): add ifdef/endif around WIFCONTINUED usage
/external/strace/tests/
Dwait4.c179 #if defined WCONTINUED && defined WIFCONTINUED in main()
181 assert(WIFCONTINUED(*s)); in main()
/external/strace/tests-m32/
Dwait4.c179 #if defined WCONTINUED && defined WIFCONTINUED in main()
181 assert(WIFCONTINUED(*s)); in main()
/external/strace/tests-mx32/
Dwait4.c179 #if defined WCONTINUED && defined WIFCONTINUED in main()
181 assert(WIFCONTINUED(*s)); in main()
/external/ltp/lib/
Dtst_status.c58 if (WIFCONTINUED(status)) in tst_strstatus()
/external/honggfuzz/posix/
Darch.c87 if (WIFCONTINUED(status)) { in arch_analyzeSignal()
/external/python/cpython2/Lib/plat-irix6/
DWAIT.py32 def WIFCONTINUED(stat): return (WWORD(stat)==WCONTFLG) function
/external/mksh/src/
Djobs.c1354 #if defined(WCONTINUED) && defined(WIFCONTINUED) in j_sigchld()
1396 #if defined(WCONTINUED) && defined(WIFCONTINUED) in j_sigchld()
1397 if (WIFCONTINUED(status)) { in j_sigchld()
/external/honggfuzz/netbsd/
Dtrace.c630 if (WIFCONTINUED(status)) { in arch_traceAnalyze()
/external/honggfuzz/mac/
Darch.c189 if (WIFCONTINUED(status)) { in arch_analyzeSignal()
/external/honggfuzz/linux/
Dtrace.c1208 if (WIFCONTINUED(status)) { in arch_traceAnalyze()
/external/python/cpython2/Modules/
Dposixmodule.c7337 #ifdef WIFCONTINUED
7352 return PyBool_FromLong(WIFCONTINUED(status)); in posix_WIFCONTINUED()
9112 #ifdef WIFCONTINUED
/external/python/cpython3/Modules/
Dposixmodule.c9391 #ifdef WIFCONTINUED
9409 return WIFCONTINUED(wait_status); in os_WIFCONTINUED_impl()
/external/python/cpython3/Modules/clinic/
Dposixmodule.c.h4613 #if defined(HAVE_SYS_WAIT_H) && defined(WIFCONTINUED)
/external/python/cpython2/Doc/library/
Dos.rst2307 .. function:: WIFCONTINUED(status)
/external/python/cpython3/Doc/library/
Dos.rst3761 .. function:: WIFCONTINUED(status)