Searched refs:exit_code (Results 1 - 8 of 8) sorted by relevance

/xsrc/external/mit/xorg-server/dist/test/
H A Dtests-common.c14 int exit_code = -1; local in function:run_test_in_child
22 exit_code = WEXITSTATUS(csts);
23 if (exit_code == 0)
28 exit(exit_code);
/xsrc/external/mit/libxcvt/dist/.gitlab-ci/
H A Dmeson-build.sh46 exit_code=$?
48 exit $exit_code
/xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/
H A Dgtest-death-test.h94 // bool KilledBySIGHUP(int exit_code) {
95 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
192 explicit ExitedWithCode(int exit_code);
/xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/
H A Dgtest-death-test.h94 // bool KilledBySIGHUP(int exit_code) {
95 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
192 explicit ExitedWithCode(int exit_code);
/xsrc/external/mit/MesaLib.old/dist/src/gtest/src/
H A Dgtest-death-test.cc152 ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { argument
193 static std::string ExitSummary(int exit_code) { argument
198 m << "Exited with exit status " << exit_code;
202 if (WIFEXITED(exit_code)) {
203 m << "Exited with exit status " << WEXITSTATUS(exit_code);
204 } else if (WIFSIGNALED(exit_code)) {
205 m << "Terminated by signal " << WTERMSIG(exit_code);
208 if (WCOREDUMP(exit_code)) {
/xsrc/external/mit/MesaLib/dist/src/gtest/src/
H A Dgtest-death-test.cc164 ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { argument
205 static std::string ExitSummary(int exit_code) { argument
210 m << "Exited with exit status " << exit_code;
214 if (WIFEXITED(exit_code)) {
215 m << "Exited with exit status " << WEXITSTATUS(exit_code);
216 } else if (WIFSIGNALED(exit_code)) {
217 m << "Terminated by signal " << WTERMSIG(exit_code);
220 if (WCOREDUMP(exit_code)) {
/xsrc/external/mit/xf86-video-qxl/dist/scripts/
H A DXspice175 def error(msg, exit_code=1):
177 sys.exit(exit_code)
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c1372 DWORD exit_code = STILL_ACTIVE; local in function:lp_rast_destroy
1373 if (GetExitCodeThread(rast->threads[i], &exit_code) && exit_code == STILL_ACTIVE)

Completed in 12 milliseconds