Home
last modified time | relevance | path

Searched refs:ElfRawSectionBuilder (Results 1 – 2 of 2) sorted by relevance

/art/compiler/
Delf_writer_quick.h121 class ElfRawSectionBuilder : public ElfSectionBuilder {
123 ElfRawSectionBuilder(const std::string& sec_name, Elf32_Word type, Elf32_Word flags, in ElfRawSectionBuilder() function
127 ~ElfRawSectionBuilder() {} in ~ElfRawSectionBuilder()
246 void RegisterRawSection(ElfRawSectionBuilder bld) { in RegisterRawSection()
268 std::vector<ElfRawSectionBuilder> other_builders_;
Delf_writer_quick.cc373 ElfRawSectionBuilder* it = other_builders_.data(); in Write()
930 ElfRawSectionBuilder debug_info(".debug_info", SHT_PROGBITS, 0, nullptr, 0, 1, 0); in Write()
931 ElfRawSectionBuilder debug_abbrev(".debug_abbrev", SHT_PROGBITS, 0, nullptr, 0, 1, 0); in Write()
932 ElfRawSectionBuilder debug_str(".debug_str", SHT_PROGBITS, 0, nullptr, 0, 1, 0); in Write()
933 ElfRawSectionBuilder eh_frame(".eh_frame", SHT_PROGBITS, SHF_ALLOC, nullptr, 0, 4, 0); in Write()
945 ElfRawSectionBuilder oat_patches(".oat_patches", SHT_OAT_PATCH, 0, NULL, 0, in Write()