Searched refs:exit_status (Results 1 - 4 of 4) sorted by relevance

/openjdk10/test/fmw/gtest/include/gtest/
H A Dgtest-death-test.h193 bool operator()(int exit_status) const;
207 bool operator()(int exit_status) const;
/openjdk10/test/fmw/gtest/src/
H A Dgtest-death-test.cc153 bool ExitedWithCode::operator()(int exit_status) const {
156 return exit_status == exit_code_;
160 return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_;
171 bool KilledBySignal::operator()(int exit_status) const {
172 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_;
206 // Returns true if exit_status describes a process that was terminated
208 bool ExitedUnsuccessfully(int exit_status) { argument
209 return !ExitedWithCode(0)(exit_status);
[all...]
/openjdk10/test/fmw/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h154 // Returns true if exit_status describes a process that was terminated
156 GTEST_API_ bool ExitedUnsuccessfully(int exit_status);
/openjdk10/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp530 DWORD exit_status; local
531 if (!GetExitCodeProcess(ph, &exit_status)) {
540 return (exit_status == STILL_ACTIVE) ? true : false;

Completed in 60 milliseconds