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

References

tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
 1056         error = socket_pipe.CreateNew(true);
 1057         if (error.Fail()) {
 1061                     __FUNCTION__, error.AsCString());
 1062           return error;
 1072         error = StartListenThread("127.0.0.1", 0);
 1073         if (error.Fail()) {
 1077                     __FUNCTION__, error.AsCString());
 1078           return error;
 1096           error.SetErrorString("failed to bind to port 0 on 127.0.0.1");
 1098                     __FUNCTION__, error.AsCString());
 1099           return error;
 1172     error = Host::LaunchProcess(launch_info);
 1174     if (error.Success() &&
 1178         error = socket_pipe.OpenAsReader(named_pipe_path, false);
 1179         if (error.Fail())
 1183                     __FUNCTION__, named_pipe_path.c_str(), error.AsCString());
 1193         error = socket_pipe.ReadWithTimeout(
 1195         if (error.Success() && (port != nullptr)) {
 1215                     __FUNCTION__, named_pipe_path.c_str(), error.AsCString());
 1233     error.SetErrorStringWithFormat("unable to locate " DEBUGSERVER_BASENAME);
 1236   if (error.Fail()) {
 1238               error.AsCString());
 1241   return error;