/external/lldb/source/Symbol/ |
D | SymbolVendor.cpp | 85 ModuleSP module_sp(GetModule()); in AddSymbolFileRepresentation() 100 ModuleSP module_sp(GetModule()); in SetCompileUnitAtIndex() 129 ModuleSP module_sp(GetModule()); in GetNumCompileUnits() 151 ModuleSP module_sp(GetModule()); in ParseCompileUnitLanguage() 165 ModuleSP module_sp(GetModule()); in ParseCompileUnitFunctions() 178 ModuleSP module_sp(GetModule()); in ParseCompileUnitLineTable() 191 ModuleSP module_sp(GetModule()); in ParseCompileUnitSupportFiles() 204 ModuleSP module_sp(GetModule()); in ParseFunctionBlocks() 217 ModuleSP module_sp(GetModule()); in ParseTypes() 230 ModuleSP module_sp(GetModule()); in ParseVariablesForContext() [all …]
|
D | SymbolFile.cpp | 30 lldb::ModuleSP module_sp(obj_file->GetModule()); in FindPlugin() 81 return m_obj_file->GetModule()->GetTypeList(); in GetTypeList() 88 return m_obj_file->GetModule()->GetClangASTContext(); in GetClangASTContext()
|
D | CompileUnit.cpp | 62 GetModule()->CalculateSymbolContext(sc); in CalculateSymbolContext() 68 return GetModule(); in CalculateSymbolContextModule() 80 GetModule()->DumpSymbolContext(s); in DumpSymbolContext() 225 SymbolVendor* symbol_vendor = GetModule()->GetSymbolVendor(); in GetLanguage() 245 SymbolVendor* symbol_vendor = GetModule()->GetSymbolVendor(); in GetLineTable() 348 SymbolContext sc(GetModule()); in ResolveSymbolContext() 446 SymbolVendor* symbol_vendor = GetModule()->GetSymbolVendor(); in GetSupportFiles()
|
D | Symbol.cpp | 302 ModuleSP module_sp (base_address.GetModule()); in GetPrologueByteSize() 419 sc->module_sp = GetAddress().GetModule(); in CalculateSymbolContext() 428 return GetAddress().GetModule(); in CalculateSymbolContextModule() 444 ModuleSP module_sp (GetAddress().GetModule()); in DumpSymbolContext()
|
/external/lldb/source/Core/ |
D | Address.cpp | 61 ModuleSP module_sp (address.GetModule()); in GetByteOrderAndAddressSize() 124 ModuleSP module_sp (address.GetModule()); in ReadAddress() 259 Address::GetModule () const in GetModule() function in Address 264 module_sp = section_sp->GetModule(); in GetModule() 410 s->Printf("%s[", section_sp->GetModule()->GetFileSpec().GetFilename().AsCString()); in Dump() 445 ModuleSP module_sp (GetModule()); in Dump() 680 ModuleSP module_sp (GetModule()); in Dump() 779 ModuleSP module_sp (section_sp->GetModule()); in CalculateSymbolContext() 795 return section_sp->GetModule(); in CalculateSymbolContextModule() 806 sc.module_sp = section_sp->GetModule(); in CalculateSymbolContextCompileUnit() [all …]
|
D | ValueObjectMemory.cpp | 203 m_error = m_value.GetValueAsData (&exe_ctx, m_data, 0, GetModule().get()); in UpdateValue() 248 m_error = value.GetValueAsData(&exe_ctx, m_data, 0, GetModule().get()); in UpdateValue() 270 ValueObjectMemory::GetModule() in GetModule() function in ValueObjectMemory 272 return m_address.GetModule(); in GetModule()
|
D | ValueObjectVariable.cpp | 184 m_error = m_value.GetValueAsData (&exe_ctx, m_data, 0, GetModule().get()); in UpdateValue() 237 m_error = value.GetValueAsData(&exe_ctx, m_data, 0, GetModule().get()); in UpdateValue() 282 ValueObjectVariable::GetModule() in GetModule() function in ValueObjectVariable
|
D | Section.cpp | 151 assert(GetModule().get()); in ResolveContainedAddress() 177 const ModuleSP a_module_sp = a.GetModule(); in Compare() 178 const ModuleSP b_module_sp = b.GetModule(); in Compare() 250 ModuleSP module_sp (GetModule()); in DumpName()
|
D | ModuleChild.cpp | 37 ModuleChild::GetModule () const in GetModule() function in ModuleChild
|
/external/lldb/scripts/Python/interface/ |
D | SBAddress.i | 123 ") GetModule; 125 GetModule (); 166 __swig_getmethods__["module"] = GetModule 167 …if _newclass: module = property(GetModule, None, doc='''A read only property that returns an lldb …
|
D | SBSymbolContext.i | 61 lldb::SBModule GetModule (); 85 __swig_getmethods__["module"] = GetModule 87 …if _newclass: module = property(GetModule, SetModule, doc='''A read/write property that allows the…
|
D | SBFrame.i | 85 GetModule () const; 292 __swig_getmethods__["module"] = GetModule 293 …if _newclass: module = property(GetModule, None, doc='''A read only property that returns an lldb …
|
/external/lldb/source/Target/ |
D | SectionLoadList.cpp | 66 const FileSpec &module_file_spec (section->GetModule()->GetFileSpec()); in SetSectionLoadAddress() 107 ModuleSP module_sp (section->GetModule()); in SetSectionLoadAddress() 110 ModuleSP curr_module_sp (ats_pos->second->GetModule()); in SetSectionLoadAddress() 141 const FileSpec &module_file_spec (section_sp->GetModule()->GetFileSpec()); in SetSectionUnloaded() 173 const FileSpec &module_file_spec (section_sp->GetModule()->GetFileSpec()); in SetSectionUnloaded()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARF.cpp | 235 return m_obj_file->GetModule()->GetTypeList(); in GetTypeList() 497 ModuleSP module_sp (m_obj_file->GetModule()); in ~SymbolFileDWARF() 524 ClangASTContext &ast = m_obj_file->GetModule()->GetClangASTContext(); in GetClangASTContext() 543 ModuleSP module_sp (m_obj_file->GetModule()); in InitializeObject() 686 …m_obj_file->GetModule()->ReportWarning ("empty dSYM file detected, dSYM was created with an execut… in CalculateAbilities() 707 ModuleSP module_sp (m_obj_file->GetModule()); in GetCachedSectionData() 921 ModuleSP module_sp (m_obj_file->GetModule()); in ParseCompileUnit() 969 … m_obj_file->GetModule()->GetSymbolVendor()->SetCompileUnitAtIndex(cu_idx, cu_sp); in ParseCompileUnit() 1058 ModuleSP module_sp (m_obj_file->GetModule()); in ParseCompileUnitFunction() 1179 …return DWARFDebugLine::ParseSupportFiles(sc.comp_unit->GetModule(), get_debug_line_data(), cu_comp… in ParseCompileUnitSupportFiles() [all …]
|
D | SymbolFileDWARFDebugMap.cpp | 79 ModuleSP oso_module_sp (oso_objfile->GetModule()); in GetFileRangeMap() 422 …m_obj_file->GetModule()->ReportError ("N_SO in symbol with UID %u has invalid sibling in debug map… in InitOSO() 439 …m_obj_file->GetModule()->ReportError ("N_OSO symbol[%u] can't be found, please file a bug and atta… in InitOSO() 441 …m_obj_file->GetModule()->ReportError ("N_SO not found for N_OSO symbol[%u], please file a bug and … in InitOSO() 443 …m_obj_file->GetModule()->ReportError ("N_SO has incorrect symbol type (%u) for N_OSO symbol[%u], p… in InitOSO() 445 …m_obj_file->GetModule()->ReportError ("N_OSO has incorrect symbol type (%u) for N_OSO symbol[%u], … in InitOSO() 484 …obj_file->GetModule()->ReportError ("debug map object file '%s' has changed (actual time is 0x%" P… in GetModuleByCompUnitInfo() 508 comp_unit_info->oso_sp->module_sp.reset (new DebugMapModule (obj_file->GetModule(), in GetModuleByCompUnitInfo() 511 … m_obj_file->GetModule()->GetArchitecture(), in GetModuleByCompUnitInfo() 661 … m_compile_unit_infos[cu_idx].compile_unit_sp.reset(new CompileUnit (m_obj_file->GetModule(), in ParseCompileUnitAtIndex() [all …]
|
/external/lldb/test/python_api/function_symbol/ |
D | TestSymbolAPI.py | 88 print "UUID:", addr_line1.GetModule().GetUUIDString() 89 … self.assertTrue(addr_line1.GetModule().GetUUIDString() == addr_line2.GetModule().GetUUIDString())
|
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
D | DynamicLoaderDarwinKernel.cpp | 569 DynamicLoaderDarwinKernel::KextImageInfo::GetModule () in GetModule() function in DynamicLoaderDarwinKernel::KextImageInfo 1017 if (m_kernel.GetModule().get() in LoadKernelModuleIfNeeded() 1018 && m_kernel.GetModule()->GetObjectFile() in LoadKernelModuleIfNeeded() 1019 && !m_kernel.GetModule()->GetObjectFile()->GetFileSpec().GetFilename().IsEmpty()) in LoadKernelModuleIfNeeded() 1021 kernel_name = m_kernel.GetModule()->GetObjectFile()->GetFileSpec().GetFilename(); in LoadKernelModuleIfNeeded() 1028 if (m_kernel.GetLoadAddress() == LLDB_INVALID_ADDRESS && m_kernel.GetModule()) in LoadKernelModuleIfNeeded() 1033 ObjectFile *kernel_object_file = m_kernel.GetModule()->GetObjectFile(); in LoadKernelModuleIfNeeded() 1065 if (m_kernel.IsLoaded() && m_kernel.GetModule()) in LoadKernelModuleIfNeeded() 1068 …const Symbol *symbol = m_kernel.GetModule()->FindFirstSymbolWithNameAndType (kext_summary_symbol, … in LoadKernelModuleIfNeeded() 1211 else if (image_info.GetLoadAddress() == LLDB_INVALID_ADDRESS && !image_info.GetModule()) in ParseKextSummaries() [all …]
|
/external/lldb/examples/python/ |
D | diagnose_unwind.py | 27 if sbaddr.GetModule(): 29 module_uuid_str = sbaddr.GetModule().GetUUIDString() 32 if sbaddr.GetModule().GetFileSpec(): 33 module_filename = sbaddr.GetModule().GetFileSpec().GetFilename() 49 return sbaddr.GetModule()
|
/external/lldb/source/API/ |
D | SBSection.cpp | 60 return section_sp && section_sp->GetModule().get() != NULL; in IsValid() 175 ModuleSP module_sp (section_sp->GetModule()); in GetFileOffset() 211 ModuleSP module_sp (section_sp->GetModule()); in GetSectionData()
|
D | SBAddress.cpp | 253 SBAddress::GetModule () in GetModule() function in SBAddress 257 sb_module.SetSP (m_opaque_ap->GetModule()); in GetModule()
|
/external/lldb/test/python_api/default-constructor/ |
D | sb_symbolcontext.py | 9 obj.GetModule()
|
D | sb_address.py | 16 obj.GetModule()
|
/external/lldb/include/lldb/Core/ |
D | ModuleChild.h | 67 GetModule () const;
|
/external/lldb/source/Plugins/Process/Utility/ |
D | RegisterContextLLDB.cpp | 124 ModuleSP pc_module_sp (m_current_pc.GetModule()); in InitializeZerothFrame() 161 else if (m_current_pc.GetModule() == m_start_pc.GetModule()) in InitializeZerothFrame() 283 ModuleSP pc_module_sp (m_current_pc.GetModule()); in InitializeNonZerothFrame() 575 ModuleSP pc_module_sp (m_current_pc.GetModule()); in GetFastUnwindPlanForFrame() 669 ModuleSP pc_module_sp (m_current_pc.GetModule()); in GetFullUnwindPlanForFrame() 1253 if (m_sym_ctx_valid && m_current_pc.IsValid() && m_current_pc.GetModule()) in InvalidateFullUnwindPlan() 1255 …func_unwinders_sp = m_current_pc.GetModule()->GetObjectFile()->GetUnwindTable().GetFuncUnwindersCo… in InvalidateFullUnwindPlan()
|
/external/clang/include/clang/CodeGen/ |
D | ModuleBuilder.h | 35 virtual llvm::Module* GetModule() = 0;
|