Home
last modified time | relevance | path

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

/art/runtime/
Doat_file.h48 class OatMethodOffsets; variable
75 class PACKED(4) OatMethodOffsets {
77 explicit OatMethodOffsets(uint32_t code_offset = 0) : code_offset_(code_offset) {} in code_offset_()
79 ~OatMethodOffsets() {} in ~OatMethodOffsets()
81 OatMethodOffsets(const OatMethodOffsets&) = default;
82 OatMethodOffsets& operator=(const OatMethodOffsets&) = default;
259 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
283 const OatMethodOffsets* methods_pointer);
293 const OatMethodOffsets* const methods_pointer_;
Doat_file.cc2011 reinterpret_cast<const OatMethodOffsets*>(methods_pointer)); in GetOatClass()
2089 const OatMethodOffsets* methods_pointer) in OatClass()
2119 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethodOffsetsOffset()
2126 const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const { in GetOatMethodOffsets()
2144 const OatMethodOffsets& oat_method_offsets = methods_pointer_[methods_pointer_index]; in GetOatMethodOffsets()
2149 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethod()
/art/dex2oat/linker/
Doat_writer.cc289 dchecked_vector<OatMethodOffsets> method_offsets_;
1406 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
1585 OatMethodOffsets offsets(0u); in VisitMethod()
1733 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index]; in VisitMethod()
4043 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets); in OatClass()
Doat_writer_test.cc513 EXPECT_EQ(4U, sizeof(OatMethodOffsets)); in TEST_F()
/art/oatdump/
Doatdump.cc1132 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index); in DumpOatMethod()