Home
last modified time | relevance | path

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

/ndk/sources/third_party/googletest/googletest/include/gtest/
Dgtest-death-test.h193 bool operator()(int exit_status) const;
207 bool operator()(int exit_status) const;
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-death-test.cc153 bool ExitedWithCode::operator()(int exit_status) const { in operator ()()
156 return exit_status == exit_code_; in operator ()()
160 return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_; in operator ()()
171 bool KilledBySignal::operator()(int exit_status) const { in operator ()()
172 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; in operator ()()
208 bool ExitedUnsuccessfully(int exit_status) { in ExitedUnsuccessfully() argument
209 return !ExitedWithCode(0)(exit_status); in ExitedUnsuccessfully()
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
Dgtest-death-test-internal.h156 GTEST_API_ bool ExitedUnsuccessfully(int exit_status);
/ndk/sources/host-tools/make-3.81/
Dconfigure2175 $as_echo "$as_me: exit $exit_status"
2179 exit $exit_status
/ndk/sources/host-tools/make-3.81/autom4te.cache/
Doutput.02086 trap 'exit_status=$?
2175 $as_echo "$as_me: exit $exit_status"
2179 exit $exit_status
10082 trap 'exit_status=$?
10083 { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status