Lines Matching refs:gdb_server
111 void handle_attach_to_pid(GDBRemoteCommunicationServerLLGS &gdb_server, in handle_attach_to_pid() argument
113 Status error = gdb_server.AttachToProcess(pid); in handle_attach_to_pid()
121 void handle_attach_to_process_name(GDBRemoteCommunicationServerLLGS &gdb_server, in handle_attach_to_process_name() argument
126 void handle_attach(GDBRemoteCommunicationServerLLGS &gdb_server, in handle_attach() argument
139 handle_attach_to_pid(gdb_server, static_cast<lldb::pid_t>(pid)); in handle_attach()
141 handle_attach_to_process_name(gdb_server, attach_target); in handle_attach()
144 void handle_launch(GDBRemoteCommunicationServerLLGS &gdb_server, in handle_launch() argument
161 gdb_server.SetLaunchInfo(info); in handle_launch()
163 Status error = gdb_server.LaunchProcess(); in handle_launch()
195 GDBRemoteCommunicationServerLLGS &gdb_server, in ConnectToRemote() argument
267 error = gdb_server.InitializeConnection(std::move(connection_up)); in ConnectToRemote()
439 GDBRemoteCommunicationServerLLGS gdb_server(mainloop, factory); in main_gdbserver() local
455 handle_attach(gdb_server, attach_target); in main_gdbserver()
457 handle_launch(gdb_server, Inputs); in main_gdbserver()
462 ConnectToRemote(mainloop, gdb_server, reverse_connect, host_and_port, in main_gdbserver()
466 if (!gdb_server.IsConnected()) { in main_gdbserver()