Home
last modified time | relevance | path

Searched refs:WTERMSIG (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/host-tools/make-3.81/
Djob.c140 # ifndef WTERMSIG
141 # define WTERMSIG(x) ((x) & 0x7f) macro
150 # define WIFSIGNALED(x) (WTERMSIG (x) != 0)
153 # define WIFEXITED(x) (WTERMSIG (x) == 0)
159 # ifndef WTERMSIG
160 # define WTERMSIG(x) ((x).w_termsig) macro
169 # define WIFSIGNALED(x) (WTERMSIG(x) != 0)
172 # define WIFEXITED(x) (WTERMSIG(x) == 0)
571 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0; in reap_children()
606 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0; in reap_children()
Dconfigure.in209 #ifdef WTERMSIG
210 /* If we have WEXITSTATUS and WTERMSIG, just use them on ints. */
/ndk/sources/third_party/googletest/googletest/test/
Dgtest_test_utils.py277 self._return_code = -os.WTERMSIG(ret_code)
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-death-test.cc172 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; in operator ()()
194 m << "Terminated by signal " << WTERMSIG(exit_code); in ExitSummary()
/ndk/sources/host-tools/make-3.81/autom4te.cache/
Doutput.08473 #ifdef WTERMSIG
8474 /* If we have WEXITSTATUS and WTERMSIG, just use them on ints. */