Home
last modified time | relevance | path

Searched refs:KillProcess (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp271 Status RemoteAwarePlatform::KillProcess(const lldb::pid_t pid) { in KillProcess() function in RemoteAwarePlatform
273 return m_remote_platform_sp->KillProcess(pid); in KillProcess()
274 return Platform::KillProcess(pid); in KillProcess()
H A DPlatform.cpp989 Status Platform::KillProcess(const lldb::pid_t pid) { in KillProcess() function in Platform
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptedPlatformInterface.h
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedPlatformPythonInterface.h
H A DScriptedPlatformPythonInterface.cpp
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/Interfaces/
H A DScriptedPlatformInterface.h43 virtual Status KillProcess(lldb::pid_t pid) { in KillProcess() function
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPlatformPythonInterface.h49 Status KillProcess(lldb::pid_t pid) override;
H A DScriptedPlatformPythonInterface.cpp94 Status ScriptedPlatformPythonInterface::KillProcess(lldb::pid_t pid) { in KillProcess() function in ScriptedPlatformPythonInterface
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h100 Status KillProcess(const lldb::pid_t pid) override;
H A DPlatform.h348 virtual Status KillProcess(const lldb::pid_t pid);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h58 Status KillProcess(const lldb::pid_t pid) override;
H A DPlatformRemoteGDBServer.cpp399 Status PlatformRemoteGDBServer::KillProcess(const lldb::pid_t pid) { in KillProcess() function in PlatformRemoteGDBServer
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h531 llvm::Expected<int> KillProcess(lldb::pid_t pid);
H A DGDBRemoteCommunicationClient.cpp4357 llvm::Expected<int> GDBRemoteCommunicationClient::KillProcess(lldb::pid_t pid) { in KillProcess() function in GDBRemoteCommunicationClient
H A DProcessGDBRemote.cpp2538 llvm::Expected<int> kill_res = m_gdb_comm.KillProcess(GetID()); in DoDestroy()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp617 return platform_sp->KillProcess(pid); in Kill()
/freebsd/contrib/googletest/docs/
H A Dadvanced.md497 TEST(MyDeathTest, KillProcess) {
498 EXPECT_EXIT(KillProcess(), testing::KilledBySignal(SIGKILL),
508 * calling `KillProcess()` kills the process with signal `SIGKILL`.