Searched refs:MethodTranslation (Results 1 – 2 of 2) sorted by relevance
/art/runtime/ |
D | class_linker.h | 862 class MethodTranslation { 865 static MethodTranslation CreateConflictingMethod() { in CreateConflictingMethod() 866 return MethodTranslation(Type::kConflict, /*translation*/nullptr); in CreateConflictingMethod() 870 static MethodTranslation CreateAbstractMethod() { in CreateAbstractMethod() 871 return MethodTranslation(Type::kAbstract, /*translation*/nullptr); in CreateAbstractMethod() 875 static MethodTranslation CreateTranslatedMethod(ArtMethod* new_method) { in CreateTranslatedMethod() 876 return MethodTranslation(Type::kTranslation, new_method); in CreateTranslatedMethod() 908 MethodTranslation(Type type, ArtMethod* translation) in MethodTranslation() function 934 /*out*/std::unordered_map<size_t, MethodTranslation>* default_translations) 981 const std::unordered_map<size_t, MethodTranslation>& default_translations,
|
D | class_linker.cc | 5486 std::unordered_map<size_t, ClassLinker::MethodTranslation> default_translations; in LinkMethods() 5619 /*out*/std::unordered_map<size_t, ClassLinker::MethodTranslation>* default_translations) { in LinkVirtualMethods() 5755 {j, ClassLinker::MethodTranslation::CreateConflictingMethod()}); in LinkVirtualMethods() 5764 {j, ClassLinker::MethodTranslation::CreateAbstractMethod()}); in LinkVirtualMethods() 5783 {j, ClassLinker::MethodTranslation::CreateTranslatedMethod(default_method)}); in LinkVirtualMethods() 6485 const std::unordered_map<size_t, ClassLinker::MethodTranslation>& default_translations, in LinkInterfaceMethods()
|