Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A Delf_file_impl.h93 static bool IsSymbolSectionType(Elf_Word section_type);
95 Elf_Sym* GetSymbol(Elf_Word section_type, Elf_Word i) const;
99 Elf_Addr FindSymbolAddress(Elf_Word section_type,
143 Elf_Sym* GetSymbolSectionStart(Elf_Word section_type) const;
144 const char* GetStringSectionStart(Elf_Word section_type) const;
154 SymbolTable** GetSymbolTable(Elf_Word section_type);
177 Elf_Sym* FindSymbolByName(Elf_Word section_type,
187 const char* GetString(Elf_Word section_type, Elf_Word) const;
H A Delf_file.cc583 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; in GetSymbolSectionStart()
584 switch (section_type) { in GetSymbolSectionStart()
594 LOG(FATAL) << section_type; in GetSymbolSectionStart()
603 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; in GetStringSectionStart()
604 switch (section_type) { in GetStringSectionStart()
612 LOG(FATAL) << section_type; in GetStringSectionStart()
621 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; in GetString()
800 return ((section_type == SHT_SYMTAB) || (section_type == SHT_DYNSYM)); in IsSymbolSectionType()
823 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; in GetSymbolTable()
824 switch (section_type) { in GetSymbolTable()
[all …]
H A Delf_file.h79 uint64_t FindSymbolAddress(unsigned section_type,
/aosp12/system/linkerconfig/contents/context/
H A Dcontext.cc71 void Context::SetCurrentSection(SectionType section_type) { in SetCurrentSection() argument
72 current_section_ = section_type; in SetCurrentSection()
/aosp12/art/runtime/gc/space/
H A Dimage_space.cc3672 auto section_type = static_cast<ImageHeader::ImageSections>(i); in DumpSections() local
3673 const ImageSection& section = header.GetImageSection(section_type); in DumpSections()
3674 os << section_type << " " << reinterpret_cast<const void*>(base + section.Offset()) in DumpSections()