Home
last modified time | relevance | path

Searched refs:exe_file (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBAttachInfo.cpp115 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 DSBLaunchInfo.cpp123 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 DProcessInfo.cpp65 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 DSBAttachInfo.h77 void SetExecutable(lldb::SBFileSpec exe_file);
H A DSBLaunchInfo.h78 void SetExecutableFile(SBFileSpec exe_file, bool add_as_first_arg);
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h45 void SetExecutableFile(const FileSpec &exe_file,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp379 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 DProcessGDBRemote.cpp761 if (FileSpec exe_file = launch_info.GetExecutableFile()) in DoLaunch() local
762 args.ReplaceArgumentAtIndex(0, exe_file.GetPath(false)); in DoLaunch()