Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Utility/
H A DProcessInfo.cpp25 : m_executable(), m_arguments(), m_environment(), m_arch() {} in ProcessInfo()
33 m_executable.Clear(); in Clear()
43 return m_executable.GetFilename().GetCString(); in GetName()
47 return m_executable.GetFilename().GetStringRef(); in GetNameAsStringRef()
65 m_executable = exe_file; in SetExecutableFile()
73 m_executable.Clear(); in SetExecutableFile()
92 m_executable.SetFile(first_arg, FileSpec::Style::native); in SetArguments()
108 m_executable.SetFile(first_arg, FileSpec::Style::native); in SetArguments()
120 if (m_executable) { in Dump()
123 m_executable.Dump(s.AsRawOstream()); in Dump()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DProcessInfo.h42 FileSpec &GetExecutableFile() { return m_executable; } in GetExecutableFile()
47 const FileSpec &GetExecutableFile() const { return m_executable; } in GetExecutableFile()
92 FileSpec m_executable; variable
/llvm-project-15.0.7/lldb/source/Core/
H A DSection.cpp166 m_executable(false), m_relocated(false), m_target_byte_size(target_byte_size) { in Section()
182 m_executable(false), m_relocated(false), m_target_byte_size(target_byte_size) { in Section()
296 m_writable ? 'w' : '-', m_executable ? 'x' : '-', in Dump()
360 if (m_executable) in GetPermissions()
369 m_executable = (permissions & ePermissionsExecutable) != 0; in SetPermissions()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DSection.h278 m_executable : 1, // If this section has executable permissions variable
/llvm-project-15.0.7/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp334 m_executable = m_shell; in ConvertArgumentsForLaunchingInShell()