Searched refs:exit_status (Results 1 – 7 of 7) sorted by relevance
193 bool operator()(int exit_status) const;207 bool operator()(int exit_status) const;
153 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() argument209 return !ExitedWithCode(0)(exit_status); in ExitedUnsuccessfully()
156 GTEST_API_ bool ExitedUnsuccessfully(int exit_status);
1011 * src/sed.h (struct sed_cmd): exit_status -> int_arg1180 * sed/compile.c (compile_program): Fill in exit_status for `q' and `Q'1186 * sed/sed.h (struct sed_cmd): Declare exit_status
2058 $as_echo "$as_me: exit $exit_status"2062 exit $exit_status28237 { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
2175 $as_echo "$as_me: exit $exit_status"2179 exit $exit_status
2086 trap 'exit_status=$?2175 $as_echo "$as_me: exit $exit_status"2179 exit $exit_status10082 trap 'exit_status=$?10083 { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status