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

  /art/runtime/
oat.h 137 // OatMethodOffsets are currently 5x32-bits=160-bits long, so if we can
138 // save even one OatMethodOffsets struct, the more complicated encoding
142 kOatClassAllCompiled = 0, // OatClass is followed by an OatMethodOffsets for each method.
143 kOatClassSomeCompiled = 1, // A bitmap of which OatMethodOffsets are present follows the OatClass.
144 kOatClassNoneCompiled = 2, // All methods are interpreted so no OatMethodOffsets are necessary.
150 class PACKED(4) OatMethodOffsets {
152 explicit OatMethodOffsets(uint32_t code_offset = 0);
154 ~OatMethodOffsets();
156 OatMethodOffsets(const OatMethodOffsets&) = default
    [all...]
oat.cc 414 OatMethodOffsets::OatMethodOffsets(uint32_t code_offset) : code_offset_(code_offset) {
417 OatMethodOffsets::~OatMethodOffsets() {}
oat_file.h 50 class OatMethodOffsets;
226 // Return a pointer to the OatMethodOffsets for the requested
229 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
232 // OatMethodOffsets for the requested method_index, or 0 if none
253 const OatMethodOffsets* methods_pointer);
263 const OatMethodOffsets* const methods_pointer_;
oat_file.cc     [all...]
  /art/dex2oat/linker/
oat_writer.cc 256 // Offset from OatClass::offset_ to the OatMethodOffsets for the
267 // method has an OatMethodOffsets in methods_offsets_, otherwise
272 // OatMethodOffsets and OatMethodHeaders for each CompiledMethod
277 dchecked_vector<OatMethodOffsets> method_offsets_;
    [all...]
oat_writer_test.cc 470 EXPECT_EQ(4U, sizeof(OatMethodOffsets));
    [all...]
  /art/oatdump/
oatdump.cc     [all...]

Completed in 199 milliseconds