Searched refs:ElfSectionBuilder (Results 1 – 2 of 2) sorted by relevance
/art/compiler/ |
D | elf_writer_quick.h | 56 class ElfSectionBuilder { 58 ElfSectionBuilder(const std::string& sec_name, Elf32_Word type, Elf32_Word flags, in ElfSectionBuilder() function 59 const ElfSectionBuilder *link, Elf32_Word info, Elf32_Word align, in ElfSectionBuilder() 70 virtual ~ElfSectionBuilder() {} in ~ElfSectionBuilder() 77 const ElfSectionBuilder* link_; 87 class ElfDynamicBuilder : public ElfSectionBuilder { 90 void AddDynamicTag(Elf32_Sword tag, Elf32_Word offset, ElfSectionBuilder* section); 92 ElfDynamicBuilder(const std::string& sec_name, ElfSectionBuilder *link) in ElfDynamicBuilder() 93 : ElfSectionBuilder(sec_name, SHT_DYNAMIC, SHF_ALLOC | SHF_ALLOC, link, in ElfDynamicBuilder() 99 ElfSectionBuilder* section_; [all …]
|
D | elf_writer_quick.cc | 640 ElfSectionBuilder* section) { in AddDynamicTag() 704 ElfSectionBuilder* builder, std::string* strtab) { in AssignSectionStr() 873 const std::string& name, const ElfSectionBuilder* section, Elf32_Addr addr, in AddSymbol()
|