Home
last modified time | relevance | path

Searched refs:KillProcess (Results 1 – 15 of 15) 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.cpp984 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/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPlatformPythonInterface.cpp92 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.h345 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.cpp406 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.h520 llvm::Expected<int> KillProcess(lldb::pid_t pid);
H A DGDBRemoteCommunicationClient.cpp4337 llvm::Expected<int> GDBRemoteCommunicationClient::KillProcess(lldb::pid_t pid) { in KillProcess() function in GDBRemoteCommunicationClient
H A DProcessGDBRemote.cpp2449 llvm::Expected<int> kill_res = m_gdb_comm.KillProcess(GetID()); in DoDestroy()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp620 return platform_sp->KillProcess(pid); in GetFilePermissions()
/freebsd/contrib/googletest/docs/
H A Dadvanced.md452 TEST(MyDeathTest, KillProcess) {
453 EXPECT_EXIT(KillProcess(), testing::KilledBySignal(SIGKILL),
463 * calling `KillProcess()` kills the process with signal `SIGKILL`.