HomeSort by relevance Sort by last modified time
    Searched refs:OatMethodOffsets (Results 1 - 8 of 8) sorted by null

  /art/runtime/
oat.h 149 // OatMethodOffsets are currently 5x32-bits=160-bits long, so if we can
150 // save even one OatMethodOffsets struct, the more complicated encoding
154 kOatClassAllCompiled = 0, // OatClass is followed by an OatMethodOffsets for each method.
155 kOatClassSomeCompiled = 1, // A bitmap of which OatMethodOffsets are present follows the OatClass.
156 kOatClassNoneCompiled = 2, // All methods are interpreted so no OatMethodOffsets are necessary.
162 class PACKED(4) OatMethodOffsets {
164 OatMethodOffsets(uint32_t code_offset = 0);
166 ~OatMethodOffsets();
168 OatMethodOffsets& operator=(const OatMethodOffsets&) = default
    [all...]
oat_file.h 38 class OatMethodOffsets;
182 // Return a pointer to the OatMethodOffsets for the requested
185 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
188 // OatMethodOffsets for the requested method_index, or 0 if none
205 const OatMethodOffsets* methods_pointer);
215 const OatMethodOffsets* const methods_pointer_;
oat.cc 475 OatMethodOffsets::OatMethodOffsets(uint32_t code_offset) : code_offset_(code_offset) {
478 OatMethodOffsets::~OatMethodOffsets() {}
oat_file.cc 668 reinterpret_cast<const OatMethodOffsets*>(methods_pointer));
676 const OatMethodOffsets* methods_pointer)
706 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index);
713 const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const {
731 const OatMethodOffsets& oat_method_offsets = methods_pointer_[methods_pointer_index];
736 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index);
    [all...]
  /art/compiler/
oat_test.cc 184 EXPECT_EQ(4U, sizeof(OatMethodOffsets));
oat_writer.h 226 // Offset from OatClass::offset_ to the OatMethodOffsets for the
244 // method has an OatMethodOffsets in methods_offsets_, otherwise
249 // OatMethodOffsets and OatMethodHeaders for each CompiledMethod
254 std::vector<OatMethodOffsets> method_offsets_;
oat_writer.cc 314 // OatMethodOffsets for the compiled methods.
493 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_];
605 OatMethodOffsets offsets(0u);
699 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index_];
    [all...]
  /art/oatdump/
oatdump.cc 793 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index);
817 *indent1_os << "OatMethodOffsets ";
826 // If we can't read OatMethodOffsets, the rest of the data is dangerous to read.
    [all...]

Completed in 487 milliseconds