Searched refs:m_symbol_file (Results 1 – 4 of 4) sorted by relevance
/openbsd/gnu/llvm/lldb/include/lldb/Core/ |
H A D | ModuleSpec.h | 70 return (m_symbol_file ? &m_symbol_file : nullptr); in GetSymbolFileSpecPtr() 74 return (m_symbol_file ? &m_symbol_file : nullptr); in GetSymbolFileSpecPtr() 77 FileSpec &GetSymbolFileSpec() { return m_symbol_file; } in GetSymbolFileSpec() 79 const FileSpec &GetSymbolFileSpec() const { return m_symbol_file; } in GetSymbolFileSpec() 132 m_symbol_file.Clear(); in Clear() 147 if (m_symbol_file) 178 if (m_symbol_file) { in Dump() 182 strm << m_symbol_file; in Dump() 264 FileSpec m_symbol_file; variable
|
/openbsd/gnu/llvm/lldb/include/lldb/Symbol/ |
H A D | Type.h | 52 : UserID(uid), m_symbol_file(symbol_file) {} in SymbolFileType() 61 SymbolFile &GetSymbolFile() const { return m_symbol_file; } in GetSymbolFile() 64 SymbolFile &m_symbol_file; 125 SymbolFile *GetSymbolFile() { return m_symbol_file; } in GetSymbolFile() 126 const SymbolFile *GetSymbolFile() const { return m_symbol_file; } in GetSymbolFile() 211 SymbolFile *m_symbol_file = nullptr; variable
|
/openbsd/gnu/llvm/lldb/source/Symbol/ |
H A D | Type.cpp | 133 m_symbol_file(symbol_file), m_type_sp(type_sp) {} in SymbolFileType() 137 Type *resolved_type = m_symbol_file.ResolveTypeUID(GetID()); in GetType() 150 m_symbol_file(symbol_file), m_context(context), in Type() 341 m_encoding_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); in GetEncodingType() 380 if (ArchSpec arch = m_symbol_file->GetObjectFile()->GetArchitecture()) { in GetByteSize() 405 Type *typedef_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); in GetTypedefType() 547 m_symbol_file->GetTypeSystemForLanguage(eLanguageTypeC); in ResolveCompilerType() 618 m_symbol_file->CompleteType(m_compiler_type); in ResolveCompilerType() 734 if (m_symbol_file) in GetModule() 735 return m_symbol_file->GetObjectFile()->GetModule(); in GetModule()
|
/openbsd/gnu/llvm/lldb/source/Commands/ |
H A D | CommandObjectTarget.cpp | 212 m_symbol_file(LLDB_OPT_SET_1, false, "symfile", 's', 0, in CommandObjectTargetCreate() 237 m_option_group.Append(&m_symbol_file, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1); in CommandObjectTargetCreate() 274 FileSpec symfile(m_symbol_file.GetOptionValue().GetCurrentValue()); in DoExecute() 458 OptionGroupFile m_symbol_file; member in CommandObjectTargetCreate 2483 m_symbol_file(LLDB_OPT_SET_1, false, "symfile", 's', 0, in CommandObjectTargetModulesAdd() 2490 m_option_group.Append(&m_symbol_file, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1); in CommandObjectTargetModulesAdd() 2511 OptionGroupFile m_symbol_file; member in CommandObjectTargetModulesAdd 2524 if (m_symbol_file.GetOptionValue().OptionWasSet()) in DoExecute() 2526 m_symbol_file.GetOptionValue().GetCurrentValue(); in DoExecute() 2583 if (m_symbol_file.GetOptionValue().OptionWasSet()) in DoExecute() [all …]
|