Home
last modified time | relevance | path

Searched refs:OatMethod (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Doat_file.cc407 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const { in GetOatMethod()
409 return OatMethod( in GetOatMethod()
420 OatFile::OatMethod::OatMethod(const byte* base, in OatMethod() function in art::OatFile::OatMethod
453 OatFile::OatMethod::~OatMethod() {} in ~OatMethod()
455 const void* OatFile::OatMethod::GetCode() const { in GetCode()
459 uint32_t OatFile::OatMethod::GetCodeSize() const { in GetCodeSize()
478 void OatFile::OatMethod::LinkMethod(mirror::ArtMethod* method) const { in LinkMethod()
Doat_file.h71 class OatMethod {
110 ~OatMethod();
113 OatMethod(const byte* base,
152 const OatMethod GetOatMethod(uint32_t method_index) const;
Dcommon_test.h168 OatFile::OatMethod CreateOatMethod(const void* code, in CreateOatMethod()
175 return OatFile::OatMethod(NULL, in CreateOatMethod()
203 OatFile::OatMethod oat_method = CreateOatMethod(method_code, in MakeExecutable()
217 OatFile::OatMethod oat_method = CreateOatMethod(method_code, in MakeExecutable()
Dclass_linker.h363 const OatFile::OatMethod GetOatMethodFor(const mirror::ArtMethod* method)
Dclass_linker.cc1552 const OatFile::OatMethod ClassLinker::GetOatMethodFor(const mirror::ArtMethod* method) { in GetOatMethodFor()
1681 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index); in LinkCode()
/art/oatdump/
Doatdump.cc233 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets()
287 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx); in DumpOatClass()
294 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx); in DumpOatClass()
306 const OatFile::OatMethod& oat_method, const DexFile& dex_file, in DumpOatMethod()
393 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) { in DumpVmap()
420 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method, in DescribeVReg()
440 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpGcMap()
473 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) { in DumpMappingTable()
501 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpMappingAtOffset()
524 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpGcMapAtNativePcOffset()
[all …]
/art/compiler/
Doat_test.cc32 const OatFile::OatMethod& oat_method, in CheckMethod()