Searched refs:class_def_method_index (Results 1 – 3 of 3) sorted by relevance
/art/dex2oat/linker/ |
D | oat_writer.cc | 250 CompiledMethod* GetCompiledMethod(size_t class_def_method_index) const { in GetCompiledMethod() 251 return compiled_methods_[class_def_method_index]; in GetCompiledMethod() 818 virtual bool VisitMethod(size_t class_def_method_index, const ClassAccessor::Method& method) = 0; 887 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, in VisitMethod() 969 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, in VisitMethod() 1181 bool VisitMethod(size_t class_def_method_index, in VisitMethod() argument 1188 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 1473 bool VisitMethod(size_t class_def_method_index, in VisitMethod() argument 1477 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 1564 bool VisitMethod(size_t class_def_method_index, const ClassAccessor::Method& method) override in VisitMethod() argument [all …]
|
/art/runtime/ |
D | art_method.cc | 434 uint32_t class_def_method_index = 0u; in GetOatMethodIndexFromMethodIndex() local 437 return class_def_method_index; in GetOatMethodIndexFromMethodIndex() 439 class_def_method_index++; in GetOatMethodIndexFromMethodIndex()
|
D | class_linker.cc | 3619 uint32_t class_def_method_index) REQUIRES_SHARED(Locks::mutator_lock_) { in LinkCode() argument 3639 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() 3797 size_t class_def_method_index = 0; in LoadClass() local 3821 ArtMethod* art_method = klass->GetDirectMethodUnchecked(class_def_method_index, in LoadClass() 3824 LinkCode(this, art_method, oat_class_ptr, class_def_method_index); in LoadClass() 3830 art_method->SetMethodIndex(class_def_method_index); in LoadClass() 3832 last_class_def_method_index = class_def_method_index; in LoadClass() 3834 ++class_def_method_index; in LoadClass() 3837 class_def_method_index - accessor.NumDirectMethods(), in LoadClass() 3840 LinkCode(this, art_method, oat_class_ptr, class_def_method_index); in LoadClass() [all …]
|