Searched refs:exitcode (Results 1 – 15 of 15) sorted by relevance
59 extern SDL_NORETURN void SDL_ExitProcess(int exitcode);60 SDL_NORETURN void SDL_ExitProcess(int exitcode) in SDL_ExitProcess() argument66 TerminateProcess(GetCurrentProcess(), exitcode); in SDL_ExitProcess()69 ExitProcess(exitcode); in SDL_ExitProcess()72 emscripten_force_exit(exitcode); /* this should "kill" the app. */ in SDL_ExitProcess()73 exit(exitcode); in SDL_ExitProcess()75 _exit(exitcode); in SDL_ExitProcess()77 _Exit(exitcode); in SDL_ExitProcess()79 _exit(exitcode); in SDL_ExitProcess()
124 extern void SDL_ExitProcess(int exitcode);127 extern SDL_NORETURN void SDL_ExitProcess(int exitcode);
137 DWORD exitcode; in testcase_run_forked_() local161 GetExitCodeProcess(info.hProcess, &exitcode); in testcase_run_forked_()164 if (exitcode == 0) in testcase_run_forked_()166 else if (exitcode == MAGIC_EXITCODE) in testcase_run_forked_()
30 valgrind --error-exitcode=42 --leak-check=full ./build/debug/src/test_lib_json/jsoncpp_test
283 void SDL_ExitProcess(int exitcode);286 SDL_NORETURN void SDL_ExitProcess(int exitcode);
857 int exitcode = 0; in X11_ShowMessageBox() local861 exitcode = 1; in X11_ShowMessageBox()863 exitcode = 1; in X11_ShowMessageBox()865 _exit(exitcode); /* don't run atexit() stuff, static destructors, etc. */ in X11_ShowMessageBox()
272 exitcode=$?274 exit $exitcode ;;
291 exitcode=$?293 exit $exitcode ;;
331 exitcode=$?333 exit $exitcode ;;
318 exitcode=$?320 exit $exitcode ;;
183 exitcode=0184 as_fn_success || { exitcode=1; echo as_fn_success failed.; }185 as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }186 as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }187 as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }191 exitcode=1; echo positional parameters were not saved.193 test x\$exitcode = x0 || exit 1
Completed in 55 milliseconds