Home
last modified time | relevance | path

Searched refs:OatMethodOffsets (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Doat.h150 class PACKED(4) OatMethodOffsets {
152 explicit OatMethodOffsets(uint32_t code_offset = 0);
154 ~OatMethodOffsets();
156 OatMethodOffsets(const OatMethodOffsets&) = default;
157 OatMethodOffsets& operator=(const OatMethodOffsets&) = default;
Doat.cc414 OatMethodOffsets::OatMethodOffsets(uint32_t code_offset) : code_offset_(code_offset) { in OatMethodOffsets() function in art::OatMethodOffsets
417 OatMethodOffsets::~OatMethodOffsets() {} in ~OatMethodOffsets()
Doat_file.h50 class OatMethodOffsets; variable
229 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
253 const OatMethodOffsets* methods_pointer);
263 const OatMethodOffsets* const methods_pointer_;
Doat_file.cc2007 reinterpret_cast<const OatMethodOffsets*>(methods_pointer)); in GetOatClass()
2085 const OatMethodOffsets* methods_pointer) in OatClass()
2115 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethodOffsetsOffset()
2122 const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const { in GetOatMethodOffsets()
2140 const OatMethodOffsets& oat_method_offsets = methods_pointer_[methods_pointer_index]; in GetOatMethodOffsets()
2145 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethod()
/art/dex2oat/linker/
Doat_writer.cc277 dchecked_vector<OatMethodOffsets> method_offsets_;
1374 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
1553 OatMethodOffsets offsets(0u); in VisitMethod()
1699 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index]; in VisitMethod()
4163 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets); in OatClass()
Doat_writer_test.cc470 EXPECT_EQ(4U, sizeof(OatMethodOffsets)); in TEST_F()
/art/oatdump/
Doatdump.cc1129 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index); in DumpOatMethod()