Home
last modified time | relevance | path

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

/art/compiler/
Doat_writer.cc242 virtual bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) = 0;
310 …bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, const ClassDataItemIterator& it) { in VisitMethod()
367 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) in VisitMethod() argument
370 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod()
559 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it ATTRIBUTE_UNUSED) in VisitMethod() argument
562 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod()
600 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) in VisitMethod() argument
603 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod()
682 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) in VisitMethod() argument
685 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod()
[all …]
Doat_writer.h214 CompiledMethod* GetCompiledMethod(size_t class_def_method_index) const { in GetCompiledMethod() argument
215 DCHECK_LT(class_def_method_index, compiled_methods_.size()); in GetCompiledMethod()
216 return compiled_methods_[class_def_method_index]; in GetCompiledMethod()
/art/runtime/
Dclass_linker.cc2003 size_t class_def_method_index = 0; in GetOatMethodIndexFromMethodIndex() local
2006 return class_def_method_index; in GetOatMethodIndexFromMethodIndex()
2008 class_def_method_index++; in GetOatMethodIndexFromMethodIndex()
2013 return class_def_method_index; in GetOatMethodIndexFromMethodIndex()
2015 class_def_method_index++; in GetOatMethodIndexFromMethodIndex()
2192 uint32_t class_def_method_index) { in LinkCode() argument
2203 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode()
2346 size_t class_def_method_index = 0; in LoadClassMembers() local
2352 LinkCode(method, oat_class, class_def_method_index); in LoadClassMembers()
2358 method->SetMethodIndex(class_def_method_index); in LoadClassMembers()
[all …]
Dclass_linker.h611 uint32_t class_def_method_index)