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

/art/runtime/
H A Doat_file.cc565 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const {
568 return OatMethod(nullptr, 0, 0);
573 return OatMethod(
579 return OatMethod(oat_file_->Begin(), 0, 0);
583 OatFile::OatMethod::OatMethod(const byte* base, function in class:art::OatFile::OatMethod
591 OatFile::OatMethod::~OatMethod() {}
593 void OatFile::OatMethod::LinkMethod(mirror::ArtMethod* method) const {
H A Doat_file.h89 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,
157 OatMethod() {} function in class:art::OatFile::OatMethod
186 // Get the OatMethod entry based on its index into the class
190 const OatMethod GetOatMethod(uint32_t method_index) const;

Completed in 255 milliseconds