reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
  244     auto connection_result = connection_up->Connect(connection_url, &error);
  251     if (error.Fail()) {
  253               connection_url, error.AsCString());
  294       auto connection_result = connection_up->Connect(connection_url, &error);
  301       if (error.Fail()) {
  303                 connection_url, error.AsCString());
  308           Acceptor::Create(final_host_and_port, false, error));
  309       if (error.Fail()) {
  310         fprintf(stderr, "failed to create acceptor: %s\n", error.AsCString());
  313       error = acceptor_up->Listen(1);
  314       if (error.Fail()) {
  315         fprintf(stderr, "failed to listen: %s\n", error.AsCString());
  322           error = writeSocketIdToPipe(named_pipe_path, socket_id);
  323           if (error.Fail())
  325                     named_pipe_path, error.AsCString());
  330           error = writeSocketIdToPipe(unnamed_pipe, socket_id);
  331           if (error.Fail())
  333                     error.AsCString());
  341       error = acceptor_up->Accept(false, conn);
  342       if (error.Fail()) {
  343         printf("failed to accept new connection: %s\n", error.AsCString());
  349   error = gdb_server.InitializeConnection(std::move(connection_up));
  350   if (error.Fail()) {
  352             error.AsCString());