Home
last modified time | relevance | path

Searched refs:section_type (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Delf_file_impl.h95 static bool IsSymbolSectionType(Elf_Word section_type);
97 Elf_Sym* GetSymbol(Elf_Word section_type, Elf_Word i) const;
101 Elf_Addr FindSymbolAddress(Elf_Word section_type,
148 Elf_Sym* GetSymbolSectionStart(Elf_Word section_type) const;
149 const char* GetStringSectionStart(Elf_Word section_type) const;
159 SymbolTable** GetSymbolTable(Elf_Word section_type);
182 Elf_Sym* FindSymbolByName(Elf_Word section_type,
192 const char* GetString(Elf_Word section_type, Elf_Word) const;
Delf_file.cc579 Elf_Word section_type) const { in GetSymbolSectionStart()
580 CHECK(IsSymbolSectionType(section_type)) << file_->GetPath() << " " << section_type; in GetSymbolSectionStart()
581 switch (section_type) { in GetSymbolSectionStart()
591 LOG(FATAL) << section_type; in GetSymbolSectionStart()
599 Elf_Word section_type) const { in GetStringSectionStart()
600 CHECK(IsSymbolSectionType(section_type)) << file_->GetPath() << " " << section_type; in GetStringSectionStart()
601 switch (section_type) { in GetStringSectionStart()
609 LOG(FATAL) << section_type; in GetStringSectionStart()
616 const char* ElfFileImpl<ElfTypes>::GetString(Elf_Word section_type, in GetString() argument
618 CHECK(IsSymbolSectionType(section_type)) << file_->GetPath() << " " << section_type; in GetString()
[all …]
Delf_file.h74 uint64_t FindSymbolAddress(unsigned section_type,
/art/runtime/gc/space/
Dimage_space.cc1575 auto section_type = static_cast<ImageHeader::ImageSections>(i); in DumpSections() local
1576 const ImageSection& section = header.GetImageSection(section_type); in DumpSections()
1577 os << section_type << " " << reinterpret_cast<const void*>(base + section.Offset()) in DumpSections()