Searched defs:section_list (Results 1 - 17 of 17) sorted by relevance

/external/lldb/source/Core/
H A DAddressRange.cpp25 AddressRange::AddressRange (addr_t file_addr, addr_t byte_size, const SectionList *section_list) : argument
26 m_base_addr(file_addr, section_list),
H A DAddress.cpp222 Address::Address (addr_t address, const SectionList *section_list) : argument
226 ResolveAddressUsingFileSections(address, section_list);
241 Address::ResolveAddressUsingFileSections (addr_t file_addr, const SectionList *section_list) argument
243 if (section_list)
245 SectionSP section_sp (section_list->FindSectionContainingFileAddress(file_addr));
H A DModule.cpp444 SectionList *section_list = GetSectionList(); local
445 if (section_list)
446 return so_addr.ResolveAddressUsingFileSections(vm_addr, section_list);
1260 SectionList *section_list = GetSectionList(); local
1262 if (section_list && symbol_file)
1267 size_t num_sections = section_list->GetNumSections (0);
1270 lldb::SectionSP section_sp (section_list->GetSectionAtIndex (idx - 1));
1273 section_list->DeleteSection (idx - 1);
1407 SectionList *section_list = GetSectionList (); local
1408 if (section_list)
[all...]
/external/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp117 SectionList *section_list = image_object_file->GetSectionList (); local
118 if (section_list)
127 const size_t num_sections = section_list->GetSize();
134 SectionSP section_sp (section_list->GetSectionAtIndex (sect_idx));
/external/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.cpp277 const lldb_private::SectionList *section_list)
291 const lldb_private::Section *section = section_list->GetSectionAtIndex(shndx).get();
304 const lldb_private::SectionList *section_list)
316 sectionIndexToCString (st_shndx, section_list),
276 sectionIndexToCString(elf_half shndx, const lldb_private::SectionList *section_list) argument
301 Dump(lldb_private::Stream *s, uint32_t idx, const lldb_private::DataExtractor *strtab_data, const lldb_private::SectionList *section_list) argument
H A DObjectFileELF.cpp522 SectionList *section_list = GetSectionList();
523 if (!section_list)
527 SectionSP dynsym_section_sp (section_list->FindSectionByType (eSectionTypeELFDynamicLinkInfo, true));
562 SectionList *section_list = GetSectionList();
565 if (!section_list)
568 m_entry_point_address.ResolveAddressUsingFileSections(offset, section_list);
586 SectionList *section_list = GetSectionList();
587 if (!section_list)
591 Section *dynsym = section_list->FindSectionByType (eSectionTypeELFDynamicLinkInfo, true).get();
600 Section *dynstr = section_list
1011 ParseSymbols(Symtab *symtab, user_id_t start_id, SectionList *section_list, const size_t num_symbols, const DataExtractor &symtab_data, const DataExtractor &strtab_data) argument
1190 SectionList *section_list = m_sections_ap.get(); local
1458 SectionList *section_list = GetSectionList(); local
1523 SectionList *section_list = GetSectionList(); local
[all...]
/external/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp223 SectionList *section_list = core_objfile->GetSectionList(); local
224 if (section_list == NULL)
230 const uint32_t num_sections = section_list->GetNumSections(0);
249 Section *section = section_list->GetSectionAtIndex (i).get();
/external/elfutils/0.153/libasm/
H A DlibasmP.h154 AsmScn_t *section_list; member in struct:AsmCtx
/external/chromium_org/components/signin/core/browser/
H A Dabout_signin_internals.cc47 void AddSectionEntry(base::ListValue* section_list, argument
55 section_list->Append(entry.release());
/external/elfutils/0.153/src/
H A Dobjdump.c117 static struct section_list struct
125 struct section_list *next;
126 } *section_list; variable in typeref:struct:section_list
210 struct section_list *newp = xmalloc (sizeof (*newp));
220 newp->next = section_list;
221 section_list = newp;
467 if (section_list == NULL)
470 struct section_list *runp = section_list;
/external/lldb/source/API/
H A DSBModule.cpp409 SectionList *section_list = module_sp->GetSectionList(); local
410 if (section_list)
411 return section_list->GetSize();
425 SectionList *section_list = module_sp->GetSectionList (); local
427 if (section_list)
428 sb_section.SetSP(section_list->GetSectionAtIndex (idx));
590 SectionList *section_list = module_sp->GetSectionList(); local
591 if (section_list)
594 SectionSP section_sp (section_list->FindSectionByName(const_sect_name));
H A DSBTarget.cpp2507 SectionList *section_list = objfile->GetSectionList(); local
2508 if (section_list)
2511 const size_t num_sections = section_list->GetSize();
2514 SectionSP section_sp (section_list->GetSectionAtIndex(sect_idx));
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp454 SectionList *section_list = image_object_file->GetSectionList (); local
455 if (section_list)
466 SectionSP section_sp(section_list->FindSectionByName(info.segments[i].name));
516 SectionSP section_sp(section_list->FindSectionByName(info.segments[seg_idx].name));
559 SectionList *section_list = image_object_file->GetSectionList (); local
560 if (section_list)
565 SectionSP section_sp(section_list->FindSectionByName(info.segments[i].name));
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp2190 SectionList *section_list = objc_module_sp->GetSectionList(); local
2192 if (section_list)
2194 SectionSP text_segment_sp (section_list->FindSectionByName(ConstString("__TEXT")));
/external/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp1392 MachSymtabSectionInfo (SectionList *section_list) : argument
1393 m_section_list (section_list),
1399 m_section_infos.resize(section_list->GetNumSections(1));
1537 SectionList *section_list = GetSectionList(); local
1538 if (section_list == NULL)
1560 SectionSP linkedit_section_sp(section_list->FindSectionByName(GetSegmentNameLINKEDIT()));
1696 SectionSP text_section_sp(section_list->FindSectionByName(g_segment_name_TEXT));
1697 SectionSP data_section_sp(section_list->FindSectionByName(g_segment_name_DATA));
1698 SectionSP objc_section_sp(section_list->FindSectionByName(g_segment_name_OBJC));
1703 eh_frame_section_sp = section_list
[all...]
/external/lldb/source/Commands/
H A DCommandObjectTarget.cpp1469 SectionList *section_list = module->GetSectionList(); local
1470 if (section_list)
1476 section_list->Dump(&strm, interpreter.GetExecutionContext().GetTargetPtr(), true, UINT32_MAX);
2820 SectionList *section_list = module->GetSectionList(); local
2821 if (section_list)
2858 SectionSP section_sp (section_list->FindSectionByName(const_sect_name));
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp546 const SectionList *section_list = module_sp->GetSectionList(); local
548 const Section* section = section_list->FindSectionByName(GetDWARFMachOSegmentName ()).get();
608 const SectionList *section_list = m_obj_file->GetSectionList(); local
609 if (section_list == NULL)
616 section = section_list->FindSectionByName(GetDWARFMachOSegmentName ()).get();
619 section_list = &section->GetChildren ();
621 section = section_list->FindSectionByType (eSectionTypeDWARFDebugInfo, true).get();
626 section = section_list->FindSectionByType (eSectionTypeDWARFDebugAbbrev, true).get();
632 section = section_list->FindSectionByType (eSectionTypeDWARFDebugAranges, true).get();
636 section = section_list
709 const SectionList *section_list = module_sp->GetSectionList(); local
[all...]

Completed in 746 milliseconds