Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
HDProcessInfo.cpp61 void ProcessInfo::SetExecutableFile(const FileSpec &exe_file, in SetExecutableFile() argument
63 if (exe_file) { in SetExecutableFile()
64 m_executable = exe_file; in SetExecutableFile()
67 exe_file.GetPath(filename); in SetExecutableFile()
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBAttachInfo.cpp116 void SBAttachInfo::SetExecutable(SBFileSpec exe_file) { in SetExecutable() argument
118 exe_file); in SetExecutable()
120 if (exe_file.IsValid()) in SetExecutable()
121 m_opaque_sp->GetExecutableFile() = exe_file.ref(); in SetExecutable()
HDSBLaunchInfo.cpp104 void SBLaunchInfo::SetExecutableFile(SBFileSpec exe_file, in SetExecutableFile() argument
107 (lldb::SBFileSpec, bool), exe_file, add_as_first_arg); in SetExecutableFile()
109 m_opaque_sp->SetExecutableFile(exe_file.ref(), add_as_first_arg); in SetExecutableFile()
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
HDSBAttachInfo.i34 SetExecutable (lldb::SBFileSpec exe_file);
HDSBLaunchInfo.i41 SetExecutableFile (lldb::SBFileSpec exe_file, bool add_as_first_arg);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBAttachInfo.h73 void SetExecutable(lldb::SBFileSpec exe_file);
HDSBLaunchInfo.h66 void SetExecutableFile(SBFileSpec exe_file, bool add_as_first_arg);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
HDProcessInfo.h45 void SetExecutableFile(const FileSpec &exe_file,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
HDGDBRemoteCommunicationClient.cpp776 FileSpec exe_file = launch_info.GetExecutableFile(); in SendArgumentsPacket() local
780 if (exe_file) in SendArgumentsPacket()
781 exe_path = exe_file.GetPath(false); in SendArgumentsPacket()