Home
last modified time | relevance | path

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

/art/compiler/
Delf_builder.h608 std::vector<Section*> sections; in Write() local
609 sections.push_back(&dynsym_); in Write()
610 sections.push_back(&dynstr_); in Write()
611 sections.push_back(&hash_); in Write()
612 sections.push_back(&rodata_); in Write()
613 sections.push_back(&text_); in Write()
615 sections.push_back(&bss_); in Write()
617 sections.push_back(&dynamic_); in Write()
619 sections.push_back(&symtab_); in Write()
620 sections.push_back(&strtab_); in Write()
[all …]
Dimage_test.cc210 ImageSection sections[ImageHeader::kSectionCount]; in TEST_F() local
213 sections, in TEST_F()
Dimage_writer.cc974 ImageSection sections[ImageHeader::kSectionCount]; in CreateHeader() local
976 auto* objects_section = &sections[ImageHeader::kSectionObjects]; in CreateHeader()
980 auto* field_section = &sections[ImageHeader::kSectionArtFields]; in CreateHeader()
986 auto* methods_section = &sections[ImageHeader::kSectionArtMethods]; in CreateHeader()
993 auto* interned_strings_section = &sections[ImageHeader::kSectionInternedStrings]; in CreateHeader()
998 auto* bitmap_section = &sections[ImageHeader::kSectionImageBitmap]; in CreateHeader()
1003 for (const ImageSection& section : sections) { in CreateHeader()
1015 sections, image_roots_address_, oat_file_->GetOatHeader().GetChecksum(), in CreateHeader()
/art/runtime/
Dimage.cc31 ImageSection* sections, in ImageHeader() argument
62 std::copy_n(sections, kSectionCount, sections_); in ImageHeader()
Dimage.h62 ImageSection* sections,