Searched refs:m_executable (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | ProcessInfo.cpp | 23 : m_executable(), m_arguments(), m_environment(), m_uid(UINT32_MAX), in ProcessInfo() 28 : m_executable(name), m_arguments(), m_environment(), m_uid(UINT32_MAX), in ProcessInfo() 32 m_executable.Clear(); in Clear() 42 return m_executable.GetFilename().GetCString(); in GetName() 46 return m_executable.GetFilename().GetLength(); in GetNameLength() 64 m_executable = exe_file; in SetExecutableFile() 72 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()
|
| H A D | ProcessLaunchInfo.cpp | 338 m_executable = m_shell; in ConvertArgumentsForLaunchingInShell()
|
| H A D | Process.cpp | 289 if (m_executable) { in Dump() 290 s.Printf(" name = %s\n", m_executable.GetFilename().GetCString()); in Dump() 292 m_executable.Dump(&s); in Dump()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | ProcessInfo.h | 40 FileSpec &GetExecutableFile() { return m_executable; } in GetExecutableFile() 45 const FileSpec &GetExecutableFile() const { return m_executable; } in GetExecutableFile() 89 FileSpec m_executable;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | Section.cpp | 158 m_executable(false), m_relocated(false), m_target_byte_size(target_byte_size) { in Section() 180 m_executable(false), m_relocated(false), m_target_byte_size(target_byte_size) { in Section() 328 m_writable ? 'w' : '-', m_executable ? 'x' : '-', m_file_offset, in Dump() 394 if (m_executable) in GetPermissions() 405 m_executable = (permissions & ePermissionsExecutable) != 0; in SetPermissions()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | Section.h | 282 m_executable : 1, // If this section has executable permissions variable
|