Home
last modified time | relevance | path

Searched refs:DexLayoutSections (Results 1 – 9 of 9) sorted by relevance

/art/libdexfile/dex/
Ddex_file_layout.cc34 std::ostream& operator<<(std::ostream& os, const DexLayoutSections& sections) { in operator <<()
35 for (size_t i = 0; i < static_cast<size_t>(DexLayoutSections::SectionType::kSectionCount); ++i) { in operator <<()
36 os << static_cast<DexLayoutSections::SectionType>(i) << ":" << sections.sections_[i] << "\n"; in operator <<()
Ddex_file_layout.h91 class DexLayoutSections {
102 std::ostream& operator<<(std::ostream& os, DexLayoutSections::SectionType collector_type);
104 std::ostream& operator<<(std::ostream& os, const DexLayoutSections& sections);
/art/runtime/
Doat_file.h44 class DexLayoutSections; variable
581 const DexLayoutSections* GetDexLayoutSections() const { in GetDexLayoutSections()
598 const DexLayoutSections* dex_layout_sections);
627 const DexLayoutSections* const dex_layout_sections_ = nullptr;
Doat_file.cc983 const DexLayoutSections* const dex_layout_sections = dex_layout_sections_offset != 0 in Setup()
984 ? reinterpret_cast<const DexLayoutSections*>(Begin() + dex_layout_sections_offset) in Setup()
2169 const DexLayoutSections* dex_layout_sections) in OatDexFile()
/art/dexlayout/
Ddexlayout.h126 DexLayoutSections& GetSections() { in GetSections()
197 DexLayoutSections dex_sections_;
Ddex_writer.cc604 DexLayoutSections::SectionType::kSectionTypeCode)]; in WriteCodeItems()
/art/dex2oat/
Ddex2oat_test.cc1317 const DexLayoutSections* const sections = oat_dex->GetDexLayoutSections(); in TEST_F()
1324 sections->sections_[static_cast<size_t>(DexLayoutSections::SectionType::kSectionTypeCode)]; in TEST_F()
/art/dex2oat/linker/
Doat_writer.cc307 DexLayoutSections dex_sections_layout_;
3567 RoundUp(rodata_offset, alignof(DexLayoutSections)) - rodata_offset; in WriteDexLayoutSections()
3580 DCHECK_ALIGNED(rodata_offset, alignof(DexLayoutSections)); in WriteDexLayoutSections()
/art/oatdump/
Doatdump.cc522 const DexLayoutSections* const layout_sections = oat_dex_file->GetDexLayoutSections(); in Dump()