Home
last modified time | relevance | path

Searched refs:class_def_method_index (Results 1 – 3 of 3) sorted by relevance

/art/dex2oat/linker/
Doat_writer.cc261 CompiledMethod* GetCompiledMethod(size_t class_def_method_index) const { in GetCompiledMethod()
262 return compiled_methods_[class_def_method_index]; in GetCompiledMethod()
829 virtual bool VisitMethod(size_t class_def_method_index, const ClassAccessor::Method& method) = 0;
898 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, in VisitMethod()
980 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, in VisitMethod()
1192 bool VisitMethod(size_t class_def_method_index, in VisitMethod() argument
1199 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod()
1484 bool VisitMethod(size_t class_def_method_index, in VisitMethod() argument
1488 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod()
1575 bool VisitMethod(size_t class_def_method_index, const ClassAccessor::Method& method) override in VisitMethod() argument
[all …]
/art/runtime/
Dart_method.cc416 uint32_t class_def_method_index = 0u; in GetOatMethodIndexFromMethodIndex() local
419 return class_def_method_index; in GetOatMethodIndexFromMethodIndex()
421 class_def_method_index++; in GetOatMethodIndexFromMethodIndex()
Dclass_linker.cc3707 uint32_t class_def_method_index) REQUIRES_SHARED(Locks::mutator_lock_) { in LinkCode() argument
3727 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode()
3887 size_t class_def_method_index = 0; in LoadClass() local
3911 ArtMethod* art_method = klass->GetDirectMethodUnchecked(class_def_method_index, in LoadClass()
3914 LinkCode(this, art_method, oat_class_ptr, class_def_method_index); in LoadClass()
3920 art_method->SetMethodIndex(class_def_method_index); in LoadClass()
3922 last_class_def_method_index = class_def_method_index; in LoadClass()
3924 ++class_def_method_index; in LoadClass()
3927 class_def_method_index - accessor.NumDirectMethods(), in LoadClass()
3930 LinkCode(this, art_method, oat_class_ptr, class_def_method_index); in LoadClass()
[all …]