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

References

tools/lldb/source/Target/Process.cpp
 2768         error = WillAttachToProcessWithName(process_name, wait_for_launch);
 2769         if (error.Success()) {
 2775             error = DoAttachToProcessWithName(process_name, attach_info);
 2778             error.SetErrorString("failed to acquire process run lock");
 2781           if (error.Fail()) {
 2784               if (error.AsCString() == nullptr)
 2785                 error.SetErrorString("attach failed");
 2787               SetExitStatus(-1, error.AsCString());
 2794           return error;
 2819               error.SetErrorStringWithFormat(
 2823               error.SetErrorStringWithFormat(
 2827           error.SetErrorString(
 2829           return error;
 2833       error.SetErrorString("invalid process name");
 2838     error = WillAttachToProcessWithID(attach_pid);
 2839     if (error.Success()) {
 2846         error = DoAttachToProcessWithID(attach_pid, attach_info);
 2849         error.SetErrorString("failed to acquire process run lock");
 2852       if (error.Success()) {
 2860         const char *error_string = error.AsCString();
 2868   return error;