Home
last modified time | relevance | path

Searched refs:debugserver_pid (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.cpp176 lldb::pid_t debugserver_pid = LLDB_INVALID_PROCESS_ID; in Handle_qLaunchGDBServer() local
178 Status error = LaunchGDBServer(Args(), debugserver_pid, socket_name, in Handle_qLaunchGDBServer()
185 response.Printf("pid:%" PRIu64 ";port:%u;", debugserver_pid, gdbserver_port); in Handle_qLaunchGDBServer()
194 if (debugserver_pid != LLDB_INVALID_PROCESS_ID) in Handle_qLaunchGDBServer()
195 Host::Kill(debugserver_pid, SIGINT); in Handle_qLaunchGDBServer()
H A DProcessGDBRemote.cpp3583 std::weak_ptr<ProcessGDBRemote> process_wp, lldb::pid_t debugserver_pid, in MonitorDebugserverProcess() argument
3594 __FUNCTION__, debugserver_pid, signo, signo, exit_status); in MonitorDebugserverProcess()
3599 if (!process_sp || process_sp->m_debugserver_pid != debugserver_pid) in MonitorDebugserverProcess()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp413 lldb::pid_t debugserver_pid = LLDB_INVALID_PROCESS_ID; in DebugProcess() local
415 if (!LaunchGDBServer(debugserver_pid, connect_url)) { in DebugProcess()
434 else if (debugserver_pid != LLDB_INVALID_PROCESS_ID) { in DebugProcess()
436 KillSpawnedProcess(debugserver_pid); in DebugProcess()
492 lldb::pid_t debugserver_pid = LLDB_INVALID_PROCESS_ID; in Attach() local
494 if (!LaunchGDBServer(debugserver_pid, connect_url)) { in Attach()
523 if (error.Fail() && debugserver_pid != LLDB_INVALID_PROCESS_ID) { in Attach()
524 KillSpawnedProcess(debugserver_pid); in Attach()