Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DScriptedPlatformInterface.h43 virtual Status KillProcess(lldb::pid_t pid) { in KillProcess() function
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedPlatformPythonInterface.h39 Status KillProcess(lldb::pid_t pid) override;
H A DScriptedPlatformPythonInterface.cpp104 Status ScriptedPlatformPythonInterface::KillProcess(lldb::pid_t pid) { in KillProcess() function in ScriptedPlatformPythonInterface
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DRemoteAwarePlatform.cpp384 Status RemoteAwarePlatform::KillProcess(const lldb::pid_t pid) { in KillProcess() function in RemoteAwarePlatform
386 return m_remote_platform_sp->KillProcess(pid); in KillProcess()
387 return Platform::KillProcess(pid); in KillProcess()
H A DPlatform.cpp1050 Status Platform::KillProcess(const lldb::pid_t pid) { in KillProcess() function in Platform
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h99 Status KillProcess(const lldb::pid_t pid) override;
H A DPlatform.h327 virtual Status KillProcess(const lldb::pid_t pid);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h58 Status KillProcess(const lldb::pid_t pid) override;
H A DPlatformRemoteGDBServer.cpp400 Status PlatformRemoteGDBServer::KillProcess(const lldb::pid_t pid) { in KillProcess() function in PlatformRemoteGDBServer
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h521 llvm::Expected<int> KillProcess(lldb::pid_t pid);
H A DGDBRemoteCommunicationClient.cpp4275 llvm::Expected<int> GDBRemoteCommunicationClient::KillProcess(lldb::pid_t pid) { in KillProcess() function in GDBRemoteCommunicationClient
H A DProcessGDBRemote.cpp2361 llvm::Expected<int> kill_res = m_gdb_comm.KillProcess(GetID()); in DoDestroy()
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBPlatform.cpp579 return platform_sp->KillProcess(pid); in Kill()