Home
last modified time | relevance | path

Searched refs:WIFSIGNALED (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/third_party/googletest/googletest/test/
Dgtest_test_utils.py276 if os.WIFSIGNALED(ret_code):
/ndk/sources/host-tools/make-3.81/
Djob.c149 # ifndef WIFSIGNALED
150 # define WIFSIGNALED(x) (WTERMSIG (x) != 0) macro
168 # ifndef WIFSIGNALED
169 # define WIFSIGNALED(x) (WTERMSIG(x) != 0) macro
571 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0; in reap_children()
606 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0; in reap_children()
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-death-test.cc172 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; in operator ()()
193 } else if (WIFSIGNALED(exit_code)) { in ExitSummary()