Searched refs:OatMethod (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | oat_file.cc | 407 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()
|
D | oat_file.h | 71 class OatMethod { 110 ~OatMethod(); 113 OatMethod(const byte* base, 152 const OatMethod GetOatMethod(uint32_t method_index) const;
|
D | common_test.h | 168 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()
|
D | class_linker.h | 363 const OatFile::OatMethod GetOatMethodFor(const mirror::ArtMethod* method)
|
D | class_linker.cc | 1552 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/ |
D | oatdump.cc | 233 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/ |
D | oat_test.cc | 32 const OatFile::OatMethod& oat_method, in CheckMethod()
|