Searched refs:RawSection (Results 1 – 3 of 3) sorted by relevance
/art/compiler/ |
D | elf_writer_quick.cc | 160 using RawSection = typename ElfBuilder<ElfTypes>::RawSection; in Write() typedef 164 std::unique_ptr<RawSection> eh_frame(new RawSection( in Write() 169 std::unique_ptr<RawSection> eh_frame_hdr(new RawSection( in Write() 172 std::unique_ptr<RawSection> debug_frame(new RawSection( in Write() 177 std::unique_ptr<RawSection> debug_frame_oat_patches(new RawSection( in Write() 179 std::unique_ptr<RawSection> debug_info(new RawSection( in Write() 182 std::unique_ptr<RawSection> debug_info_oat_patches(new RawSection( in Write() 184 std::unique_ptr<RawSection> debug_abbrev(new RawSection( in Write() 186 std::unique_ptr<RawSection> debug_str(new RawSection( in Write() 188 std::unique_ptr<RawSection> debug_line(new RawSection( in Write() [all …]
|
D | elf_builder.h | 160 class RawSection FINAL : public Section { 162 RawSection(const std::string& name, Elf_Word type, Elf_Word flags, 169 RawSection(const std::string& name, Elf_Word type) in RawSection() function 170 : RawSection(name, type, 0, nullptr, 0, 1, 0, nullptr, nullptr) { in RawSection()
|
/art/compiler/dwarf/ |
D | dwarf_test.h | 66 typedef typename ElfBuilder<ElfTypes>::RawSection RawSection; in Objdump() typedef 67 RawSection debug_info(".debug_info", SHT_PROGBITS, 0, nullptr, 0, 1, 0); in Objdump() 68 RawSection debug_abbrev(".debug_abbrev", SHT_PROGBITS, 0, nullptr, 0, 1, 0); in Objdump() 69 RawSection debug_str(".debug_str", SHT_PROGBITS, 0, nullptr, 0, 1, 0); in Objdump() 70 RawSection debug_line(".debug_line", SHT_PROGBITS, 0, nullptr, 0, 1, 0); in Objdump() 71 RawSection debug_frame(".debug_frame", SHT_PROGBITS, 0, nullptr, 0, 8, 0); in Objdump()
|