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

References

tools/lldb/source/Target/Process.cpp
 2491     error.SetErrorString("executable module does not exist");
 2492     return error;
 2505     error = GetTarget().Install(&launch_info);
 2506     if (error.Fail())
 2507       return error;
 2512     error = WillLaunch(exe_module);
 2513     if (error.Success()) {
 2520         error = DoLaunch(exe_module, launch_info);
 2523         error.SetErrorString("failed to acquire process run lock");
 2526       if (error.Fail()) {
 2529           const char *error_string = error.AsCString();
 2544           error.SetErrorString("failed to catch stop after launch");
 2592     error.SetErrorStringWithFormat("file doesn't exist: '%s'",
 2596   return error;