HomeSort by relevance Sort by last modified time
    Searched defs:section_list (Results 1 - 14 of 14) sorted by null

  /external/lldb/source/Plugins/DynamicLoader/Static/
DynamicLoaderStatic.cpp 117 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/google-breakpad/src/common/mac/
macho_reader.h 161 ByteBuffer section_list; // This segment's section list. member in struct:google_breakpad::mach_o::Segment
181 // The number of sections in section_list.
  /external/lldb/source/Plugins/Process/mach-core/
ProcessMachCore.cpp 223 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/src/libasm/
libasmP.h 157 AsmScn_t *section_list; member in struct:AsmCtx
  /external/lldb/source/API/
SBModule.cpp 409 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));
SBTarget.cpp 2507 SectionList *section_list = objfile->GetSectionList(); local
    [all...]
  /external/elfutils/src/src/
objdump.c 109 static struct section_list struct
117 struct section_list *next;
118 } *section_list; variable in typeref:struct:section_list
202 struct section_list *newp = xmalloc (sizeof (*newp));
212 newp->next = section_list;
213 section_list = newp;
461 if (section_list == NULL)
464 struct section_list *runp = section_list;
  /external/lldb/source/Core/
Module.cpp 444 SectionList *section_list = GetSectionList(); local
445 if (section_list)
446 return so_addr.ResolveAddressUsingFileSections(vm_addr, section_list);
1260 SectionList *section_list = GetSectionList(); local
1407 SectionList *section_list = GetSectionList (); local
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.cpp 454 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));
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV2.cpp 2190 SectionList *section_list = objc_module_sp->GetSectionList(); local
    [all...]
  /external/lldb/source/Plugins/ObjectFile/ELF/
ObjectFileELF.cpp 522 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->FindSectionByID (header->sh_link + 1).get()
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/ObjectFile/Mach-O/
ObjectFileMachO.cpp 1537 SectionList *section_list = GetSectionList(); local
    [all...]
  /external/lldb/source/Commands/
CommandObjectTarget.cpp 1469 SectionList *section_list = module->GetSectionList(); local
2820 SectionList *section_list = module->GetSectionList(); local
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARF.cpp 546 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->FindSectionByType (eSectionTypeDWARFDebugFrame, true).get()
709 const SectionList *section_list = module_sp->GetSectionList(); local
    [all...]

Completed in 499 milliseconds