Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDProcessInfo.cpp65 ProcessInfo::SetExecutableFile (const FileSpec &exe_file, bool add_exe_file_as_first_arg) in SetExecutableFile() argument
67 if (exe_file) in SetExecutableFile()
69 m_executable = exe_file; in SetExecutableFile()
73 if (exe_file.GetPath(filename, sizeof(filename))) in SetExecutableFile()
/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBAttachInfo.cpp110 SBAttachInfo::SetExecutable (SBFileSpec exe_file) in SetExecutable() argument
112 if (exe_file.IsValid()) in SetExecutable()
113 m_opaque_sp->GetExecutableFile() = exe_file.ref(); in SetExecutable()
HDSBLaunchInfo.cpp92 SBLaunchInfo::SetExecutableFile (SBFileSpec exe_file, bool add_as_first_arg) in SetExecutableFile() argument
94 m_opaque_sp->SetExecutableFile(exe_file.ref(), add_as_first_arg); in SetExecutableFile()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/API/
HDSBAttachInfo.h45 SetExecutable (lldb::SBFileSpec exe_file);
HDSBLaunchInfo.h75 SetExecutableFile (SBFileSpec exe_file, bool add_as_first_arg);
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/
HDProcessInfo.h53 SetExecutableFile (const FileSpec &exe_file, bool add_exe_file_as_first_arg);
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
HDGDBRemoteCommunicationClient.cpp1514 FileSpec exe_file = launch_info.GetExecutableFile(); in SendArgumentsPacket() local
1518 if (exe_file) in SendArgumentsPacket()
1519 exe_path = exe_file.GetPath(false); in SendArgumentsPacket()