Home
last modified time | relevance | path

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

/art/runtime/
Doat.h172 class PACKED(4) OatMethodOffsets {
174 OatMethodOffsets(uint32_t code_offset = 0);
176 ~OatMethodOffsets();
178 OatMethodOffsets& operator=(const OatMethodOffsets&) = default;
Doat_file.h39 class OatMethodOffsets; variable
182 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
202 const OatMethodOffsets* methods_pointer);
212 const OatMethodOffsets* const methods_pointer_;
Doat.cc514 OatMethodOffsets::OatMethodOffsets(uint32_t code_offset) : code_offset_(code_offset) { in OatMethodOffsets() function in art::OatMethodOffsets
517 OatMethodOffsets::~OatMethodOffsets() {} in ~OatMethodOffsets()
Doat_file.cc1223 reinterpret_cast<const OatMethodOffsets*>(methods_pointer)); in GetOatClass()
1231 const OatMethodOffsets* methods_pointer) in OatClass()
1261 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethodOffsetsOffset()
1268 const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const { in GetOatMethodOffsets()
1286 const OatMethodOffsets& oat_method_offsets = methods_pointer_[methods_pointer_index]; in GetOatMethodOffsets()
1291 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethod()
/art/compiler/
Doat_writer.cc199 dchecked_vector<OatMethodOffsets> method_offsets_;
788 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
894 OatMethodOffsets offsets(0u); in VisitMethod()
1006 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
2400 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets); in OatClass()
Doat_test.cc445 EXPECT_EQ(4U, sizeof(OatMethodOffsets)); in TEST_F()
/art/oatdump/
Doatdump.cc796 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index); in DumpOatMethod()