Searched refs:class_def_method_index (Results 1 – 3 of 3) sorted by relevance
/art/compiler/ |
D | oat_writer.cc | 223 virtual bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) = 0; 291 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) { in VisitMethod() argument 336 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) in VisitMethod() argument 339 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 350 oat_class->GetOatMethodOffsetsOffsetFromOatHeader(class_def_method_index); in VisitMethod() 499 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) in VisitMethod() argument 502 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 539 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) in VisitMethod() argument 542 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 578 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) { in VisitMethod() argument [all …]
|
D | oat_writer.h | 194 CompiledMethod* GetCompiledMethod(size_t class_def_method_index) const { in GetCompiledMethod() argument 195 DCHECK_LT(class_def_method_index, compiled_methods_.size()); in GetCompiledMethod() 196 return compiled_methods_[class_def_method_index]; in GetCompiledMethod()
|
/art/runtime/ |
D | class_linker.cc | 2372 size_t class_def_method_index = 0; in GetOatMethodIndexFromMethodIndex() local 2375 return class_def_method_index; in GetOatMethodIndexFromMethodIndex() 2377 class_def_method_index++; in GetOatMethodIndexFromMethodIndex() 2382 return class_def_method_index; in GetOatMethodIndexFromMethodIndex() 2384 class_def_method_index++; in GetOatMethodIndexFromMethodIndex() 2834 size_t class_def_method_index = 0; in LoadClassMembers() local 2845 LinkCode(method, oat_class, dex_file, it.GetMemberIndex(), class_def_method_index); in LoadClassMembers() 2851 method->SetMethodIndex(class_def_method_index); in LoadClassMembers() 2853 last_class_def_method_index = class_def_method_index; in LoadClassMembers() 2855 class_def_method_index++; in LoadClassMembers() [all …]
|