| /llvm-project/lldb/source/API/ |
| H A D | SBAttachInfo.cpp | 37 m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native); in SBAttachInfo() 46 m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native); in SBAttachInfo() 110 m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native); in SetExecutable() 112 m_opaque_sp->GetExecutableFile().Clear(); in SetExecutable() 119 m_opaque_sp->GetExecutableFile() = exe_file.ref(); in SetExecutable() 121 m_opaque_sp->GetExecutableFile().Clear(); in SetExecutable()
|
| H A D | SBProcessInfo.cpp | 66 SBFileSpec SBProcessInfo::GetExecutableFile() { in GetExecutableFile() function in SBProcessInfo 71 file_spec.SetFileSpec(m_opaque_up->GetExecutableFile()); in GetExecutableFile()
|
| H A D | SBLaunchInfo.cpp | 117 SBFileSpec SBLaunchInfo::GetExecutableFile() { in GetExecutableFile() function in SBLaunchInfo 120 return SBFileSpec(m_opaque_sp->GetExecutableFile()); in GetExecutableFile()
|
| /llvm-project/lldb/unittests/Utility/ |
| H A D | ProcessInstanceInfoTest.cpp | 98 info_bar.GetExecutableFile().SetFile("/foo/bar", FileSpec::Style::posix); in TEST() 102 match.GetProcessInfo().GetExecutableFile().SetFile("bar", in TEST() 108 match.GetProcessInfo().GetExecutableFile() = FileSpec(); in TEST()
|
| /llvm-project/lldb/source/Host/netbsd/ |
| H A D | HostNetBSD.cpp | 68 process_info.GetExecutableFile().SetFile(cstr, in GetNetBSDProcessArgs() 72 NameMatches(process_info.GetExecutableFile().GetFilename().GetCString(), in GetNetBSDProcessArgs() 103 process_info.GetExecutableFile(), 0x20, 0); 122 process_info.GetExecutableFile()); in GetNetBSDProcessCPUType()
|
| /llvm-project/lldb/source/Host/freebsd/ |
| H A D | Host.cpp | 72 process_info.GetExecutableFile().SetFile(pathname, FileSpec::Style::native); in GetFreeBSDProcessArgs() 74 process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native); in GetFreeBSDProcessArgs() 77 NameMatches(process_info.GetExecutableFile().GetFilename().GetCString(), in GetFreeBSDProcessArgs()
|
| /llvm-project/lldb/include/lldb/Utility/ |
| H A D | ProcessInfo.h | 43 FileSpec &GetExecutableFile() { return m_executable; } in GetExecutableFile() function 48 const FileSpec &GetExecutableFile() const { return m_executable; } in GetExecutableFile() function 304 m_match_info.GetExecutableFile().SetFile(process_name, in ProcessInstanceInfoMatch()
|
| /llvm-project/lldb/source/Host/openbsd/ |
| H A D | Host.cpp | 57 process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native); 61 process_info.GetExecutableFile().GetFilename().GetCString(), in GetOpenBSDProcessArgs()
|
| /llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessDebugger.cpp | 129 launch_info.GetExecutableFile().GetPath().c_str()); in LaunchProcess() 146 launch_info.GetExecutableFile().GetPath(), result); in LaunchProcess() 154 launch_info.GetExecutableFile().GetPath(), error); in LaunchProcess() 159 launch_info.GetExecutableFile().GetPath()); in LaunchProcess()
|
| H A D | DebuggerThread.cpp | 53 LLDB_LOG(log, "launching '{0}'", launch_info.GetExecutableFile().GetPath()); in DebugLaunch() 93 launch_info.GetExecutableFile().GetPath()); in DebuggerThreadLaunchRoutine()
|
| /llvm-project/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_process_info.py | 11 obj.GetExecutableFile()
|
| /llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectPlatform.cpp | 1090 m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec(); in DoExecute() 1092 m_options.launch_info.GetExecutableFile().GetPath(exe_path); in DoExecute() 1107 if (m_options.launch_info.GetExecutableFile()) { in DoExecute() 1119 if (m_options.launch_info.GetExecutableFile()) { in DoExecute() 1389 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue() 1395 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue() 1401 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue() 1407 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue() 1413 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
|
| H A D | CommandOptionsProcessAttach.cpp | 56 attach_info.GetExecutableFile().SetFile(option_arg, in SetOptionValue()
|
| H A D | CommandObjectProcess.cpp | 155 if (exe_module_sp == nullptr && !target->GetProcessLaunchInfo().GetExecutableFile()) { in DoExecute() 225 m_options.launch_info.SetExecutableFile(target->GetProcessLaunchInfo().GetExecutableFile(), false); in DoExecute() 231 m_options.launch_info.SetExecutableFile(target->GetProcessLaunchInfo().GetExecutableFile(), true); in DoExecute()
|
| /llvm-project/lldb/include/lldb/API/ |
| H A D | SBProcessInfo.h | 31 SBFileSpec GetExecutableFile();
|
| H A D | SBLaunchInfo.h | 55 SBFileSpec GetExecutableFile();
|
| /llvm-project/lldb/source/Host/common/ |
| H A D | MonitoringProcessLauncher.cpp | 33 FileSpec exe_spec(resolved_info.GetExecutableFile()); in LaunchProcess()
|
| /llvm-project/lldb/source/Host/windows/ |
| H A D | ProcessLauncherWindows.cpp | 103 executable = launch_info.GetExecutableFile().GetPath(); in LaunchProcess()
|
| /llvm-project/lldb/source/Plugins/Platform/QemuUser/ |
| H A D | PlatformQemuUser.cpp | 193 args.AppendArgument(launch_info.GetExecutableFile().GetPath()); in DebugProcess()
|
| /llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DynamicLoaderPOSIXDYLD.cpp | 828 process_info.GetExecutableFile().GetPath().c_str()); in ResolveExecutableModule() 830 ModuleSpec module_spec(process_info.GetExecutableFile(), in ResolveExecutableModule()
|
| /llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerCommon.cpp | 348 match_info.GetProcessInfo().GetExecutableFile().SetFile( in Handle_qfProcessInfo() 1065 m_process_launch_info.GetExecutableFile().SetFile( in Handle_A() 1216 response.PutStringAsRawHex8(proc_info.GetExecutableFile().GetPath().c_str()); in CreateProcessInfoResponse()
|
| /llvm-project/lldb/source/Host/linux/ |
| H A D | Host.cpp | 291 process_info.GetExecutableFile().SetFile(PathRef, FileSpec::Style::native); in GetExePathAndArch()
|
| /llvm-project/lldb/test/API/python_api/process/ |
| H A D | TestProcessAPI.py | 384 file_spec = process_info.GetExecutableFile()
|
| /llvm-project/lldb/source/Host/macosx/objcxx/ |
| H A D | Host.mm | 569 process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native); 573 process_info.GetExecutableFile().GetFilename().GetCString(), 1345 FileSpec exe_spec(launch_info.GetExecutableFile());
|
| /llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.cpp | 376 if (FileSpec exe_file = launch_info.GetExecutableFile()) in LaunchProcess()
|