Home
last modified time | relevance | path

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

/art/runtime/
Doat.h161 class PACKED(4) OatMethodOffsets {
163 OatMethodOffsets();
165 OatMethodOffsets(uint32_t code_offset,
168 ~OatMethodOffsets();
Doat_file.h38 class OatMethodOffsets; variable
195 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
210 const OatMethodOffsets* methods_pointer);
220 const OatMethodOffsets* methods_pointer_;
Doat.cc488 OatMethodOffsets::OatMethodOffsets() in OatMethodOffsets() function in art::OatMethodOffsets
493 OatMethodOffsets::OatMethodOffsets(uint32_t code_offset, in OatMethodOffsets() function in art::OatMethodOffsets
500 OatMethodOffsets::~OatMethodOffsets() {} in ~OatMethodOffsets()
Doat_file.cc499 reinterpret_cast<const OatMethodOffsets*>(methods_pointer)); in GetOatClass()
507 const OatMethodOffsets* methods_pointer) in OatClass()
536 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethodOffsetsOffset()
543 const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const { in GetOatMethodOffsets()
561 const OatMethodOffsets& oat_method_offsets = methods_pointer_[methods_pointer_index]; in GetOatMethodOffsets()
566 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethod()
/art/compiler/
Doat_writer.cc349 oat_method_offsets_offset + OFFSETOF_MEMBER(OatMethodOffsets, code_offset_)); in VisitMethod()
470 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
536 OatMethodOffsets offsets(0u, 0u); in VisitMethod()
603 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
1194 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets); in OatClass()
Doat_test.cc188 EXPECT_EQ(8U, sizeof(OatMethodOffsets)); in TEST_F()
Doat_writer.h237 std::vector<OatMethodOffsets> method_offsets_;
/art/oatdump/
Doatdump.cc466 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index); in DumpOatMethod()