Lines Matching defs:gdb_server
110 void handle_attach_to_pid(GDBRemoteCommunicationServerLLGS &gdb_server,
112 Status error = gdb_server.AttachToProcess(pid);
120 void handle_attach_to_process_name(GDBRemoteCommunicationServerLLGS &gdb_server,
125 void handle_attach(GDBRemoteCommunicationServerLLGS &gdb_server,
138 handle_attach_to_pid(gdb_server, static_cast<lldb::pid_t>(pid));
140 handle_attach_to_process_name(gdb_server, attach_target);
143 void handle_launch(GDBRemoteCommunicationServerLLGS &gdb_server,
160 gdb_server.SetLaunchInfo(info);
162 Status error = gdb_server.LaunchProcess();
194 GDBRemoteCommunicationServerLLGS &gdb_server,
276 error = gdb_server.InitializeConnection(std::move(connection_up));
446 GDBRemoteCommunicationServerLLGS gdb_server(mainloop, manager);
462 handle_attach(gdb_server, attach_target);
464 handle_launch(gdb_server, Inputs);
469 ConnectToRemote(mainloop, gdb_server, reverse_connect, host_and_port,
473 if (!gdb_server.IsConnected()) {