Searched refs:GetSection (Results 1 – 5 of 5) sorted by relevance
/art/libelffile/elf/ |
D | elf_debug_reader.h | 105 const Elf_Shdr* GetSection(const char* name) { return section_map_[name]; } in GetSection() function 123 const Elf_Shdr* symtab = GetSection(".symtab"); in VisitFunctionSymbols() 124 const Elf_Shdr* strtab = GetSection(".strtab"); in VisitFunctionSymbols() 125 const Elf_Shdr* text = GetSection(".text"); in VisitFunctionSymbols() 144 const Elf_Shdr* dynsym = GetSection(".dynsym"); in VisitDynamicSymbols() 145 const Elf_Shdr* dynstr = GetSection(".dynstr"); in VisitDynamicSymbols() 157 const Elf_Shdr* debug_frame = GetSection(".debug_frame"); in VisitDebugFrame()
|
/art/libdexfile/dex/ |
D | dex_file.cc | 138 ALWAYS_INLINE const T* DexFile::GetSection(const uint32_t* offset, DexFileContainer* container) { in GetSection() function in art::DexFile 163 string_ids_(GetSection<StringId>(&header_->string_ids_off_, container.get())), in DexFile() 164 type_ids_(GetSection<TypeId>(&header_->type_ids_off_, container.get())), in DexFile() 165 field_ids_(GetSection<FieldId>(&header_->field_ids_off_, container.get())), in DexFile() 166 method_ids_(GetSection<MethodId>(&header_->method_ids_off_, container.get())), in DexFile() 167 proto_ids_(GetSection<ProtoId>(&header_->proto_ids_off_, container.get())), in DexFile() 168 class_defs_(GetSection<ClassDef>(&header_->class_defs_off_, container.get())), in DexFile() 313 method_handles_ = GetSection<MethodHandleItem>(&map_item.offset_, container_.get()); in InitializeSectionsFromMapList() 316 call_site_ids_ = GetSection<CallSiteIdItem>(&map_item.offset_, container_.get()); in InitializeSectionsFromMapList()
|
D | dex_file.h | 929 const T* GetSection(const uint32_t* offset, DexFileContainer* container);
|
/art/tools/create_minidebuginfo/ |
D | create_minidebuginfo.cc | 59 const Elf_Shdr* original_text = reader.GetSection(".text"); in WriteMinidebugInfo()
|
/art/compiler/utils/ |
D | assembler_test_base.h | 235 const typename ElfTypes::Shdr* text = reader.GetSection(".text"); in ReadElf()
|