Home
last modified time | relevance | path

Searched refs:exit_code (Results 1 – 25 of 50) sorted by relevance

12

/llvm-project/clang/tools/scan-build-py/tests/functional/cases/
H A Dtest_from_cdb.py39 exit_code, reportdir = run_analyzer(tmpdir, cdb, [])
45 exit_code, reportdir = run_analyzer(tmpdir, cdb, [])
51 exit_code, reportdir = run_analyzer(tmpdir, cdb, ["--keep-empty"])
59 exit_code, __ = run_analyzer(tmpdir, cdb, [])
60 self.assertFalse(exit_code)
65 exit_code, __ = run_analyzer(tmpdir, cdb, [])
66 self.assertFalse(exit_code)
71 exit_code, __ = run_analyzer(tmpdir, cdb, ["--status-bugs"])
72 self.assertTrue(exit_code)
77 exit_code, __ = run_analyzer(tmpdir, cdb, ["--status-bugs"])
[all …]
H A D__init__.py71 exit_code, result = call_and_report(analyzer_cmd, build_cmd)
72 if exit_code != 0:
73 raise subprocess.CalledProcessError(exit_code, analyzer_cmd + build_cmd, None)
/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilLinux.cpp27 int exit_code = system(CmdLine.c_str()); in ExecuteCommand() local
28 if (WIFEXITED(exit_code)) in ExecuteCommand()
29 return WEXITSTATUS(exit_code); in ExecuteCommand()
30 if (WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGINT) in ExecuteCommand()
32 return exit_code; in ExecuteCommand()
/llvm-project/lldb/utils/lldb-repro/
H A Dlldb-repro.py
/llvm-project/compiler-rt/test/asan/TestCases/
H A Dexitcode.cpp47 DWORD exit_code; in spawn_child() local
48 if (!GetExitCodeProcess(pi.hProcess, &exit_code)) { in spawn_child()
57 return exit_code; in spawn_child()
123 int exit_code = spawn_child(argv); in main() local
124 if (exit_code == 42) { in main()
/llvm-project/lldb/source/Plugins/Process/Windows/Common/
H A DLocalDebugDelegate.cpp18 void LocalDebugDelegate::OnExitProcess(uint32_t exit_code) { in OnExitProcess() argument
20 process->OnExitProcess(exit_code); in OnExitProcess()
43 uint32_t exit_code) { in OnExitThread() argument
45 process->OnExitThread(thread_id, exit_code); in OnExitThread()
H A DNativeProcessWindows.h99 void OnExitProcess(uint32_t exit_code) override;
104 void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override;
146 void OnExitProcess(uint32_t exit_code) override { in OnExitProcess() argument
147 m_process.OnExitProcess(exit_code); in OnExitProcess()
163 void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override { in OnExitThread() argument
164 m_process.OnExitThread(thread_id, exit_code); in OnExitThread()
H A DIDebugDelegate.h29 virtual void OnExitProcess(uint32_t exit_code) = 0;
34 virtual void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) = 0;
H A DLocalDebugDelegate.h45 void OnExitProcess(uint32_t exit_code) override;
50 void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override;
/llvm-project/lldb/test/API/functionalities/fork/concurrent_vfork/
H A Dmain.cpp55 int exit_code = WEXITSTATUS(child_status); in wait_all_children_to_exit() local
56 if (exit_code > 15 || exit_code < 10) { in wait_all_children_to_exit()
58 exit_code); in wait_all_children_to_exit()
/llvm-project/llvm/utils/lit/tests/Inputs/shtest-shell/
H A Dcheck_path.py
/llvm-project/llvm/utils/lit/tests/Inputs/googletest-crash/DummySubDir/
H A DOneTest.py49 exit_code = 1 variable
54 exit_code = 0 variable
56 sys.exit(exit_code)
/llvm-project/llvm/utils/lit/tests/Inputs/googletest-sanitizer-error/DummySubDir/
H A DOneTest.py56 exit_code = 1 variable
59 exit_code = 0 variable
61 sys.exit(exit_code)
/llvm-project/llvm/utils/lit/tests/Inputs/googletest-format-respect-gtest-sharding-env-vars/DummySubDir/
H A DOneTest.py105 exit_code = 1 variable
108 exit_code = 0 variable
110 sys.exit(exit_code)
/llvm-project/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/
H A DOneTest.py105 exit_code = 1 variable
108 exit_code = 0 variable
110 sys.exit(exit_code)
/llvm-project/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/
H A DOneTest.py57 exit_code = 0 variable
66 exit_code = 0 variable
68 sys.exit(exit_code)
/llvm-project/lldb/source/Host/windows/
H A DHostThreadWindows.cpp38 DWORD exit_code = 0; in Join() local
39 if (!::GetExitCodeThread(m_thread, &exit_code)) in Join()
41 *result = exit_code; in Join()
H A DHostProcessWindows.cpp69 DWORD exit_code; in MonitorThread() local
72 ::GetExitCodeProcess(process_handle, &exit_code); in MonitorThread()
73 callback(::GetProcessId(process_handle), 0, exit_code); in MonitorThread()
/llvm-project/compiler-rt/test/profile/Windows/Inputs/
H A Dinstrprof-multiprocess.c43 DWORD exit_code; in wait_child() local
44 if (!GetExitCodeProcess(pi->hProcess, &exit_code)) { in wait_child()
53 return exit_code; in wait_child()
/llvm-project/compiler-rt/test/profile/ContinuousSyncMode/
H A Donline-merging-windows.c140 DWORD exit_code; in main()
142 if (!GetExitCodeProcess(child_pids[I], &exit_code)) { in main()
146 if (exit_code != 0) { in main()
137 DWORD exit_code; main() local
/llvm-project/lldb/source/Commands/
H A DCommandObjectQuit.cpp86 int exit_code; in DoExecute() local
87 if (arg.getAsInteger(/*autodetect radix*/ 0, exit_code)) { in DoExecute()
94 if (!m_interpreter.SetQuitExitCode(exit_code)) { in DoExecute()
/llvm-project/llvm/utils/lit/tests/Inputs/googletest-no-sharding/DummySubDir/
H A DOneTest.py103 exit_code = 1 variable
105 sys.exit(exit_code)
/llvm-project/llvm/utils/lit/tests/Inputs/googletest-detect-duplicate/DummySubDir/
H A DOneTest.py55 exit_code = 0 variable
57 sys.exit(exit_code)
/llvm-project/clang/tools/scan-build-py/lib/libscanbuild/
H A D__init__.py55 exit_code = subprocess.call(command, *args, **kwargs)
56 logging.debug("build finished with exit code: %d", exit_code)
57 return exit_code
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_netbsd_libcdep.cpp216 int exit_code = 0; in TracerThread() local
219 exit_code = 3; in TracerThread()
224 exit_code = 0; in TracerThread()
229 return exit_code; in TracerThread()

12