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;
264 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
288 const OatMethodOffsets* methods_pointer);
295 const OatMethodOffsets* const methods_pointer_;
Doat_file.cc2217 const OatMethodOffsets* methods_pointer = nullptr; in GetOatClass()
2238 static_cast<size_t>(oat_file_->End() - current_pointer) / sizeof(OatMethodOffsets)) in GetOatClass()
2240 methods_pointer = reinterpret_cast<const OatMethodOffsets*>(current_pointer); in GetOatClass()
2315 const OatMethodOffsets* methods_pointer) in OatClass()
2328 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethodOffsetsOffset()
2335 const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const { in GetOatMethodOffsets()
2358 CHECK_LE(methods_pointer_index, size_until_end / sizeof(OatMethodOffsets)) in GetOatMethodOffsets()
2361 const OatMethodOffsets& oat_method_offsets = methods_pointer_[methods_pointer_index]; in GetOatMethodOffsets()
2366 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index); in GetOatMethod()
/art/dex2oat/linker/
Doat_writer.cc296 dchecked_vector<OatMethodOffsets> method_offsets_;
1414 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
1593 OatMethodOffsets offsets(0u); in VisitMethod()
1741 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index]; in VisitMethod()
4015 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets); in OatClass()
Doat_writer_test.cc506 EXPECT_EQ(4U, sizeof(OatMethodOffsets)); in TEST_F()
/art/oatdump/
Doatdump.cc1111 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index); in DumpOatMethod()