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

/openjdk10/common/bin/
H A Dhgforest.sh430 exit_code=`cat ${rc} | tr -d ' \n\r'`
431 if [ "${exit_code}" != "0" ] ; then
432 if [ ${exit_code} -gt 1 ]; then
435 echo "WARNING: ${repo} exited abnormally (${exit_code})" > ${status_output}
437 if [ ${exit_code} -gt ${ec} ]; then
439 ec=${exit_code}
/openjdk10/test/fmw/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);
/openjdk10/hotspot/src/os/windows/vm/
H A Dos_windows.hpp72 static int exit_process_or_thread(Ept what, int exit_code);
H A Dos_windows.cpp3638 int os::win32::exit_process_or_thread(Ept what, int exit_code) { argument
3808 _endthreadex((unsigned)exit_code);
3810 ::exit(exit_code);
3812 _exit(exit_code);
3816 return exit_code;
4998 DWORD exit_code; local
5035 GetExitCodeProcess(pi.hProcess, &exit_code);
5041 exit_code = -1;
5045 return (int)exit_code;
/openjdk10/test/fmw/gtest/src/
H A Dgtest-death-test.cc149 ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { argument
182 static std::string ExitSummary(int exit_code) { argument
187 m << "Exited with exit status " << exit_code; local
191 if (WIFEXITED(exit_code)) {
192 m << "Exited with exit status " << WEXITSTATUS(exit_code);
193 } else if (WIFSIGNALED(exit_code)) {
194 m << "Terminated by signal " << WTERMSIG(exit_code);
197 if (WCOREDUMP(exit_code)) {
/openjdk10/hotspot/src/share/vm/ci/
H A DciReplay.cpp1035 int exit_code = replay_impl(THREAD); local
1039 vm_exit(exit_code);
1089 int exit_code = 0; local
1093 exit_code = 1;
1094 return exit_code;
1102 exit_code = 2;
1107 exit_code = 1;
1109 return exit_code;
/openjdk10/jdk/src/java.base/windows/native/libjava/
H A DProcessImpl_md.c406 DWORD exit_code; local
407 if (GetExitCodeProcess((HANDLE) handle, &exit_code) == 0)
409 return exit_code;
/openjdk10/hotspot/src/share/vm/runtime/
H A Dvm_operations.hpp437 VM_Exit(int exit_code) { argument
438 _exit_code = exit_code;
/openjdk10/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
H A DdebugInit.c622 forceExit(int exit_code) argument
626 exit(exit_code);
631 jniFatalError(JNIEnv *env, const char *msg, jvmtiError error, int exit_code) argument
659 forceExit(exit_code);

Completed in 230 milliseconds