Searched refs:SHT_PROGBITS (Results 1 – 2 of 2) sorted by relevance
/art/compiler/ |
D | elf_builder.h | 513 rodata_(this, ".rodata", SHT_PROGBITS, SHF_ALLOC, nullptr, 0, kPageSize, 0), in ElfBuilder() 514 text_(this, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR, nullptr, 0, kPageSize, 0), in ElfBuilder() 520 eh_frame_(this, ".eh_frame", SHT_PROGBITS, SHF_ALLOC, nullptr, 0, kPageSize, 0), in ElfBuilder() 521 eh_frame_hdr_(this, ".eh_frame_hdr", SHT_PROGBITS, SHF_ALLOC, nullptr, 0, 4, 0), in ElfBuilder() 524 debug_frame_(this, ".debug_frame", SHT_PROGBITS, 0, nullptr, 0, sizeof(Elf_Addr), 0), in ElfBuilder() 525 debug_info_(this, ".debug_info", SHT_PROGBITS, 0, nullptr, 0, 1, 0), in ElfBuilder() 526 debug_line_(this, ".debug_line", SHT_PROGBITS, 0, nullptr, 0, 1, 0), in ElfBuilder() 581 std::unique_ptr<Section> s(new Section(this, name, SHT_PROGBITS, 0, nullptr, 0, 1, 0)); in WriteSection()
|
/art/runtime/ |
D | elf.h | 1248 SHT_PROGBITS = 1, // Program-defined contents. enumerator
|