Home
last modified time | relevance | path

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

/art/runtime/
Doat.h163 class PACKED(4) OatMethodOffsets {
165 OatMethodOffsets(uint32_t code_offset = 0);
167 ~OatMethodOffsets();
Doat_file.h38 class OatMethodOffsets; variable
192 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
207 const OatMethodOffsets* methods_pointer);
217 const OatMethodOffsets* methods_pointer_;
Doat_file.cc506 reinterpret_cast<const OatMethodOffsets*>(methods_pointer)); in GetOatClass()
514 const OatMethodOffsets* methods_pointer) in OatClass()
543 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethodOffsetsOffset()
550 const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const { in GetOatMethodOffsets()
568 const OatMethodOffsets& oat_method_offsets = methods_pointer_[methods_pointer_index]; in GetOatMethodOffsets()
573 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethod()
Doat.cc494 OatMethodOffsets::OatMethodOffsets(uint32_t code_offset) : code_offset_(code_offset) { in OatMethodOffsets() function in art::OatMethodOffsets
497 OatMethodOffsets::~OatMethodOffsets() {} in ~OatMethodOffsets()
/art/compiler/
Doat_writer.cc352 oat_method_offsets_offset + OFFSETOF_MEMBER(OatMethodOffsets, code_offset_)); in VisitMethod()
478 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
544 OatMethodOffsets offsets(0u); in VisitMethod()
610 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
1203 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets); in OatClass()
Doat_test.cc188 EXPECT_EQ(4U, sizeof(OatMethodOffsets)); in TEST_F()
Doat_writer.h237 std::vector<OatMethodOffsets> method_offsets_;
/art/oatdump/
Doatdump.cc473 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index); in DumpOatMethod()