Home
last modified time | relevance | path

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

/art/dexlayout/
Ddexdiag.cc180 const std::vector<dex_ir::DexFileSection>& sections) { in FindSectionTypeForPage() argument
181 for (const auto& section : sections) { in FindSectionTypeForPage()
200 const std::vector<dex_ir::DexFileSection>& sections, in ProcessPageMap() argument
207 uint16_t type = FindSectionTypeForPage(dex_page_offset, sections); in ProcessPageMap()
228 const std::vector<dex_ir::DexFileSection>& sections, in DisplayDexStatistics() argument
239 mapped_pages.Increment(FindSectionTypeForPage(dex_page_offset, sections)); in DisplayDexStatistics()
243 for (size_t i = sections.size(); i > 0; --i) { in DisplayDexStatistics()
244 const dex_ir::DexFileSection& section = sections[i - 1]; in DisplayDexStatistics()
293 std::vector<dex_ir::DexFileSection> sections; in ProcessOneDexMapping() local
299 sections = dex_ir::GetSortedDexFileSections(header.get(), in ProcessOneDexMapping()
[all …]
/art/libdexfile/dex/
Ddex_file_layout.cc92 std::ostream& operator<<(std::ostream& os, const DexLayoutSections& sections) { in operator <<() argument
94 os << static_cast<DexLayoutSections::SectionType>(i) << ":" << sections.sections_[i] << "\n"; in operator <<()
Ddex_file_layout.h123 std::ostream& operator<<(std::ostream& os, const DexLayoutSections& sections);
/art/dex2oat/linker/
Dimage_test.cc67 ImageSection sections[ImageHeader::kSectionCount]; in TEST_F() local
70 sections, in TEST_F()
Dimage_writer.cc1935 ImageSection sections[ImageHeader::kSectionCount]; in CreateHeader() local
1936 const size_t image_end = image_info.CreateImageSections(sections, compile_app_image_); in CreateHeader()
1940 auto* bitmap_section = &sections[ImageHeader::kSectionImageBitmap]; in CreateHeader()
1945 for (const ImageSection& section : sections) { in CreateHeader()
1970 sections, in CreateHeader()
/art/runtime/
Dimage.cc33 ImageSection* sections, in ImageHeader() argument
77 std::copy_n(sections, kSectionCount, sections_); in ImageHeader()
Dimage.h118 ImageSection* sections,
Doat_file.cc1851 const DexLayoutSections* const sections = oat_dex_file->GetDexLayoutSections(); in MadviseDexFile() local
1852 CHECK(sections != nullptr); in MadviseDexFile()
1853 sections->Madvise(&dex_file, state); in MadviseDexFile()
/art/tools/runtime_memusage/
DREADME17 DexFileTrackingRegistrar, which marks sections of Dex Files as poisoned. As Dex
19 In addition, when poisoned sections of memory are accesses, their stack trace is
/art/runtime/gc/collector/
Dimmune_spaces_test.cc113 ImageSection sections[ImageHeader::kSectionCount]; in CreateImageSpace() local
117 sections, in CreateImageSpace()
/art/compiler/linker/
Delf_builder.h210 std::vector<Section*>& sections = owner_->sections_; in AddSection() local
211 Elf_Word last = sections.empty() ? PF_R : sections.back()->phdr_flags_; in AddSection()
215 sections.push_back(this); in AddSection()
216 section_index_ = sections.size(); // First ELF section has index 1. in AddSection()
/art/tools/ahat/
DREADME.txt23 * Have a menu at the top of an object view with links to the sections?
/art/dex2oat/
Ddex2oat_test.cc1388 const DexLayoutSections* const sections = oat_dex->GetDexLayoutSections(); in TEST_F() local
1390 ASSERT_TRUE(sections != nullptr); in TEST_F()
1391 LOG(INFO) << *sections; in TEST_F()
1395 sections->sections_[static_cast<size_t>(DexLayoutSections::SectionType::kSectionTypeCode)]; in TEST_F()