Home
last modified time | relevance | path

Searched refs:m_executable (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp25 : m_executable(), m_arguments(), m_environment(), m_arch(), m_listener_sp(), in ProcessInfo()
30 : m_executable(name), m_arguments(), m_environment(), m_arch(arch), in ProcessInfo()
35 m_executable.Clear(); in Clear()
46 return m_executable.GetFilename().GetCString(); in GetName()
50 return m_executable.GetFilename().GetStringRef(); in GetNameAsStringRef()
68 m_executable = exe_file; in SetExecutableFile()
76 m_executable.Clear(); in SetExecutableFile()
95 m_executable.SetFile(first_arg, FileSpec::Style::native); in SetArguments()
111 m_executable.SetFile(first_arg, FileSpec::Style::native); in SetArguments()
127 if (m_executable) { in Dump()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h43 FileSpec &GetExecutableFile() { return m_executable; } in GetExecutableFile()
48 const FileSpec &GetExecutableFile() const { return m_executable; } in GetExecutableFile()
121 FileSpec m_executable;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp170 m_executable(false), m_relocated(false), m_target_byte_size(target_byte_size) { in Section()
186 m_executable(false), m_relocated(false), m_target_byte_size(target_byte_size) { in Section()
300 m_writable ? 'w' : '-', m_executable ? 'x' : '-', in Dump()
364 if (m_executable) in GetPermissions()
373 m_executable = (permissions & ePermissionsExecutable) != 0; in SetPermissions()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DSection.h286 m_executable : 1, // If this section has executable permissions variable
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp332 m_executable = m_shell; in ConvertArgumentsForLaunchingInShell()