Searched refs:class_def_method_index (Results 1 – 3 of 3) sorted by relevance
/art/dex2oat/linker/ |
D | oat_writer.cc | 260 CompiledMethod* GetCompiledMethod(size_t class_def_method_index) const { in GetCompiledMethod() 261 return compiled_methods_[class_def_method_index]; in GetCompiledMethod() 831 virtual bool VisitMethod(size_t class_def_method_index, const ClassAccessor::Method& method) = 0; 894 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, in VisitMethod() 989 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, in VisitMethod() 1201 bool VisitMethod(size_t class_def_method_index, in VisitMethod() argument 1208 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 1492 bool VisitMethod(size_t class_def_method_index, in VisitMethod() argument 1496 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 1583 bool VisitMethod(size_t class_def_method_index, const ClassAccessor::Method& method) override in VisitMethod() argument [all …]
|
/art/runtime/ |
D | art_method.cc | 417 uint32_t class_def_method_index = 0u; in GetOatMethodIndexFromMethodIndex() local 420 return class_def_method_index; in GetOatMethodIndexFromMethodIndex() 422 class_def_method_index++; in GetOatMethodIndexFromMethodIndex()
|
D | class_linker.cc | 3509 uint32_t class_def_method_index) REQUIRES_SHARED(Locks::mutator_lock_) { in LinkCode() argument 3529 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() 3689 size_t class_def_method_index = 0; in LoadClass() local 3713 ArtMethod* art_method = klass->GetDirectMethodUnchecked(class_def_method_index, in LoadClass() 3716 LinkCode(this, art_method, oat_class_ptr, class_def_method_index); in LoadClass() 3722 art_method->SetMethodIndex(class_def_method_index); in LoadClass() 3724 last_class_def_method_index = class_def_method_index; in LoadClass() 3726 ++class_def_method_index; in LoadClass() 3729 class_def_method_index - accessor.NumDirectMethods(), in LoadClass() 3732 LinkCode(this, art_method, oat_class_ptr, class_def_method_index); in LoadClass() [all …]
|