Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file_layout.cc51 void DexLayoutSections::Madvise(const DexFile* dex_file, MadviseState state) const { in Madvise()
92 std::ostream& operator<<(std::ostream& os, const DexLayoutSections& sections) { in operator <<()
93 for (size_t i = 0; i < static_cast<size_t>(DexLayoutSections::SectionType::kSectionCount); ++i) { in operator <<()
94 os << static_cast<DexLayoutSections::SectionType>(i) << ":" << sections.sections_[i] << "\n"; in operator <<()
Ddex_file_layout.h106 class DexLayoutSections {
121 std::ostream& operator<<(std::ostream& os, const DexLayoutSections::SectionType& collector_type);
123 std::ostream& operator<<(std::ostream& os, const DexLayoutSections& sections);
/art/runtime/
Doat_file.h45 class DexLayoutSections; variable
513 const DexLayoutSections* GetDexLayoutSections() const { in GetDexLayoutSections()
528 const DexLayoutSections* dex_layout_sections);
543 const DexLayoutSections* const dex_layout_sections_ = nullptr;
Doat_file.cc819 const DexLayoutSections* const dex_layout_sections = dex_layout_sections_offset != 0 in Setup()
820 ? reinterpret_cast<const DexLayoutSections*>(Begin() + dex_layout_sections_offset) in Setup()
1698 const DexLayoutSections* dex_layout_sections) in OatDexFile()
1851 const DexLayoutSections* const sections = oat_dex_file->GetDexLayoutSections(); in MadviseDexFile()
/art/dexlayout/
Ddexlayout.h122 DexLayoutSections& GetSections() { in GetSections()
183 DexLayoutSections dex_sections_;
Ddex_writer.cc558 DexLayoutSections::SectionType::kSectionTypeCode)]; in WriteCodeItems()
/art/dex2oat/
Ddex2oat_test.cc1388 const DexLayoutSections* const sections = oat_dex->GetDexLayoutSections(); in TEST_F()
1395 sections->sections_[static_cast<size_t>(DexLayoutSections::SectionType::kSectionTypeCode)]; in TEST_F()
/art/dex2oat/linker/
Doat_writer.cc343 DexLayoutSections dex_sections_layout_;
4046 RoundUp(rodata_offset, alignof(DexLayoutSections)) - rodata_offset; in WriteDexLayoutSections()
4059 DCHECK_ALIGNED(rodata_offset, alignof(DexLayoutSections)); in WriteDexLayoutSections()
/art/oatdump/
Doatdump.cc532 const DexLayoutSections* const layout_sections = oat_dex_file->GetDexLayoutSections(); in Dump()