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

  /art/runtime/
oat.h 163 // OatMethodOffsets are currently 5x32-bits=160-bits long, so if we can
164 // save even one OatMethodOffsets struct, the more complicated encoding
168 kOatClassAllCompiled = 0, // OatClass is followed by an OatMethodOffsets for each method.
169 kOatClassSomeCompiled = 1, // A bitmap of which OatMethodOffsets are present follows the OatClass.
170 kOatClassNoneCompiled = 2, // All methods are interpreted so no OatMethodOffsets are necessary.
176 class PACKED(4) OatMethodOffsets {
178 explicit OatMethodOffsets(uint32_t code_offset = 0);
180 ~OatMethodOffsets();
182 OatMethodOffsets(const OatMethodOffsets&) = default
    [all...]
oat_file.h 47 class OatMethodOffsets;
197 // Return a pointer to the OatMethodOffsets for the requested
200 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
203 // OatMethodOffsets for the requested method_index, or 0 if none
224 const OatMethodOffsets* methods_pointer);
234 const OatMethodOffsets* const methods_pointer_;
oat.cc 533 OatMethodOffsets::OatMethodOffsets(uint32_t code_offset) : code_offset_(code_offset) {
536 OatMethodOffsets::~OatMethodOffsets() {}
oat_file.cc     [all...]
  /art/compiler/
oat_writer.cc 222 // Offset from OatClass::offset_ to the OatMethodOffsets for the
233 // method has an OatMethodOffsets in methods_offsets_, otherwise
238 // OatMethodOffsets and OatMethodHeaders for each CompiledMethod
243 dchecked_vector<OatMethodOffsets> method_offsets_;
815 // OatMethodOffsets for the compiled methods.
    [all...]
oat_test.cc 487 EXPECT_EQ(4U, sizeof(OatMethodOffsets));
    [all...]
  /art/oatdump/
oatdump.cc     [all...]

Completed in 143 milliseconds