Home
last modified time | relevance | path

Searched refs:DexLayoutSections (Results 1 – 6 of 6) 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/oat/
Doat_file.h47 class DexLayoutSections; variable
620 const DexLayoutSections* GetDexLayoutSections() const { in GetDexLayoutSections()
636 const DexLayoutSections* dex_layout_sections);
667 const DexLayoutSections* const dex_layout_sections_ = nullptr;
Doat_file.cc1006 const DexLayoutSections* const dex_layout_sections = dex_layout_sections_offset != 0 in Setup()
1007 ? reinterpret_cast<const DexLayoutSections*>(Begin() + dex_layout_sections_offset) in Setup()
2179 const DexLayoutSections* dex_layout_sections) in OatDexFile()
/art/dex2oat/linker/
Doat_writer.cc331 DexLayoutSections dex_sections_layout_;
3572 RoundUp(rodata_offset, alignof(DexLayoutSections)) - rodata_offset; in WriteDexLayoutSections()
3585 DCHECK_ALIGNED(rodata_offset, alignof(DexLayoutSections)); in WriteDexLayoutSections()
/art/oatdump/
Doatdump.cc538 const DexLayoutSections* const layout_sections = oat_dex_file->GetDexLayoutSections(); in Dump()