Searched refs:exe_file (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBAttachInfo.cpp | 115 void SBAttachInfo::SetExecutable(SBFileSpec exe_file) { in SetExecutable() argument 116 LLDB_INSTRUMENT_VA(this, exe_file); in SetExecutable() 118 if (exe_file.IsValid()) in SetExecutable() 119 m_opaque_sp->GetExecutableFile() = exe_file.ref(); in SetExecutable()
|
H A D | SBLaunchInfo.cpp | 123 void SBLaunchInfo::SetExecutableFile(SBFileSpec exe_file, in SetExecutableFile() argument 125 LLDB_INSTRUMENT_VA(this, exe_file, add_as_first_arg); in SetExecutableFile() 127 m_opaque_sp->SetExecutableFile(exe_file.ref(), add_as_first_arg); in SetExecutableFile()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | ProcessInfo.cpp | 65 void ProcessInfo::SetExecutableFile(const FileSpec &exe_file, in SetExecutableFile() argument 67 if (exe_file) { in SetExecutableFile() 68 m_executable = exe_file; in SetExecutableFile() 71 exe_file.GetPath(filename); in SetExecutableFile()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBAttachInfo.h | 77 void SetExecutable(lldb::SBFileSpec exe_file);
|
H A D | SBLaunchInfo.h | 78 void SetExecutableFile(SBFileSpec exe_file, bool add_as_first_arg);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | ProcessInfo.h | 45 void SetExecutableFile(const FileSpec &exe_file,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
H A D | PlatformRemoteGDBServer.cpp | 379 if (FileSpec exe_file = launch_info.GetExecutableFile()) in LaunchProcess() local 380 args.ReplaceArgumentAtIndex(0, exe_file.GetPath(false)); in LaunchProcess()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ProcessGDBRemote.cpp | 761 if (FileSpec exe_file = launch_info.GetExecutableFile()) in DoLaunch() local 762 args.ReplaceArgumentAtIndex(0, exe_file.GetPath(false)); in DoLaunch()
|