Home
last modified time | relevance | path

Searched refs:MethodTranslation (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dclass_linker.h1135 class MethodTranslation {
1138 static MethodTranslation CreateConflictingMethod() { in CreateConflictingMethod()
1139 return MethodTranslation(Type::kConflict, /*translation=*/nullptr); in CreateConflictingMethod()
1143 static MethodTranslation CreateAbstractMethod() { in CreateAbstractMethod()
1144 return MethodTranslation(Type::kAbstract, /*translation=*/nullptr); in CreateAbstractMethod()
1148 static MethodTranslation CreateTranslatedMethod(ArtMethod* new_method) { in CreateTranslatedMethod()
1149 return MethodTranslation(Type::kTranslation, new_method); in CreateTranslatedMethod()
1181 MethodTranslation(Type type, ArtMethod* translation) in MethodTranslation() function
1207 /*out*/std::unordered_map<size_t, MethodTranslation>* default_translations)
1254 const std::unordered_map<size_t, MethodTranslation>& default_translations,
Dclass_linker.cc6283 std::unordered_map<size_t, ClassLinker::MethodTranslation> default_translations; in LinkMethods()
6416 /*out*/std::unordered_map<size_t, ClassLinker::MethodTranslation>* default_translations) { in LinkVirtualMethods()
6567 {j, ClassLinker::MethodTranslation::CreateConflictingMethod()}); in LinkVirtualMethods()
6576 {j, ClassLinker::MethodTranslation::CreateAbstractMethod()}); in LinkVirtualMethods()
6595 {j, ClassLinker::MethodTranslation::CreateTranslatedMethod(default_method)}); in LinkVirtualMethods()
7625 const std::unordered_map<size_t, ClassLinker::MethodTranslation>& default_translations,
7953 const std::unordered_map<size_t, ClassLinker::MethodTranslation>& default_translations, in UpdateVtable()
8078 const std::unordered_map<size_t, ClassLinker::MethodTranslation>& default_translations, in LinkInterfaceMethods()