Searched defs:methods_section (Results 1 - 2 of 2) sorted by relevance

/art/compiler/
H A Dimage_writer.cc986 auto* methods_section = &sections[ImageHeader::kSectionArtMethods]; local
987 *methods_section = ImageSection(cur_pos, bin_slot_sizes_[kBinArtMethodClean] +
990 methods_section->Offset());
991 cur_pos = methods_section->End();
1079 const ImageSection& methods_section = image_header->GetMethodsSection(); local
1086 CHECK(methods_section.Contains(native_reloc.offset)) << native_reloc.offset << " not in "
1087 << methods_section;
/art/oatdump/
H A Doatdump.cc1530 const auto& methods_section = image_header_.GetMethodsSection(); local
1534 for (size_t pos = 0; pos < methods_section.Size(); pos += method_size) {
1536 image_space->Begin() + pos + methods_section.Offset());

Completed in 275 milliseconds