Searched refs:class_def_method_index (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | art_method.cc | 441 size_t class_def_method_index = 0; in GetOatMethodIndexFromMethodIndex() local 444 return class_def_method_index; in GetOatMethodIndexFromMethodIndex() 446 class_def_method_index++; in GetOatMethodIndexFromMethodIndex() 451 return class_def_method_index; in GetOatMethodIndexFromMethodIndex() 453 class_def_method_index++; in GetOatMethodIndexFromMethodIndex()
|
D | class_linker.cc | 3022 uint32_t class_def_method_index) REQUIRES_SHARED(Locks::mutator_lock_) { in LinkCode() argument 3033 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() 3239 size_t class_def_method_index = 0; in LoadClassMembers() local 3246 LinkCode(this, method, oat_class_ptr, class_def_method_index); in LoadClassMembers() 3252 method->SetMethodIndex(class_def_method_index); in LoadClassMembers() 3254 last_class_def_method_index = class_def_method_index; in LoadClassMembers() 3256 class_def_method_index++; in LoadClassMembers() 3261 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i); in LoadClassMembers() 3262 LinkCode(this, method, oat_class_ptr, class_def_method_index); in LoadClassMembers() 3263 class_def_method_index++; in LoadClassMembers()
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 239 CompiledMethod* GetCompiledMethod(size_t class_def_method_index) const { in GetCompiledMethod() 240 return compiled_methods_[class_def_method_index]; in GetCompiledMethod() 779 virtual bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) = 0; 848 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, in VisitMethod() 930 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, in VisitMethod() 1137 bool VisitMethod(size_t class_def_method_index, in VisitMethod() argument 1144 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 1455 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it ATTRIBUTE_UNUSED) in VisitMethod() argument 1458 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 1494 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it ATTRIBUTE_UNUSED) in VisitMethod() argument [all …]
|