Searched defs:OatMethod (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Doat_file.cc572 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const {
575 return OatMethod(nullptr, 0);
580 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_);
583 return OatMethod(oat_file_->Begin(), 0);
587 OatFile::OatMethod::OatMethod(const byte* base, function in class:art::OatFile::OatMethod
593 OatFile::OatMethod::~OatMethod() {}
595 void OatFile::OatMethod::LinkMethod(mirror::ArtMethod* method) const {
H A Doat_file.h92 class OatMethod { class in class:art::OatFile
101 // TODO: encode whether code is portable/quick in flags within OatMethod.
121 // that and store it somewhere, such as the OatMethod.
150 ~OatMethod();
152 // Create an OatMethod with offsets relative to the given base address
153 OatMethod(const byte* base, const uint32_t code_offset);
155 OatMethod() {} function in class:art::OatFile::OatMethod
183 // Get the OatMethod entry based on its index into the class
187 const OatMethod GetOatMethod(uint32_t method_index) const;

Completed in 39 milliseconds