Searched refs:class_def_method_index (Results 1 – 3 of 3) sorted by relevance
/art/compiler/ |
D | oat_writer.cc | 173 CompiledMethod* GetCompiledMethod(size_t class_def_method_index) const { in GetCompiledMethod() 174 return compiled_methods_[class_def_method_index]; in GetCompiledMethod() 624 virtual bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) = 0; 697 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, in VisitMethod() 759 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) in VisitMethod() argument 762 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 957 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it ATTRIBUTE_UNUSED) in VisitMethod() argument 960 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 1000 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it ATTRIBUTE_UNUSED) in VisitMethod() argument 1003 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() [all …]
|
/art/runtime/ |
D | art_method.cc | 446 size_t class_def_method_index = 0; in GetOatMethodIndexFromMethodIndex() local 449 return class_def_method_index; in GetOatMethodIndexFromMethodIndex() 451 class_def_method_index++; in GetOatMethodIndexFromMethodIndex() 456 return class_def_method_index; in GetOatMethodIndexFromMethodIndex() 458 class_def_method_index++; in GetOatMethodIndexFromMethodIndex()
|
D | class_linker.cc | 3046 uint32_t class_def_method_index) REQUIRES_SHARED(Locks::mutator_lock_) { in LinkCode() argument 3057 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() 3263 size_t class_def_method_index = 0; in LoadClassMembers() local 3270 LinkCode(this, method, oat_class_ptr, class_def_method_index); in LoadClassMembers() 3276 method->SetMethodIndex(class_def_method_index); in LoadClassMembers() 3278 last_class_def_method_index = class_def_method_index; in LoadClassMembers() 3280 class_def_method_index++; in LoadClassMembers() 3285 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i); in LoadClassMembers() 3286 LinkCode(this, method, oat_class_ptr, class_def_method_index); in LoadClassMembers() 3287 class_def_method_index++; in LoadClassMembers()
|