Lines Matching refs:ArtMethod
28 class ArtMethod; variable
46 ArtMethod* interface_method, in ImtConflictTable()
47 ArtMethod* implementation_method, in ImtConflictTable()
68 void SetInterfaceMethod(size_t index, PointerSize pointer_size, ArtMethod* method) { in SetInterfaceMethod()
72 void SetImplementationMethod(size_t index, PointerSize pointer_size, ArtMethod* method) { in SetImplementationMethod()
76 ArtMethod* GetInterfaceMethod(size_t index, PointerSize pointer_size) const { in GetInterfaceMethod()
80 ArtMethod* GetImplementationMethod(size_t index, PointerSize pointer_size) const { in GetImplementationMethod()
115 ArtMethod* interface_method = GetInterfaceMethod(table_index, pointer_size); in Visit()
119 ArtMethod* implementation_method = GetImplementationMethod(table_index, pointer_size); in Visit()
121 std::pair<ArtMethod*, ArtMethod*> updated = visitor(input); in Visit()
134 ArtMethod* Lookup(ArtMethod* interface_method, PointerSize pointer_size) const { in Lookup()
137 ArtMethod* current_interface_method = GetInterfaceMethod(table_index, pointer_size); in Lookup()
188 ArtMethod* GetMethod(size_t index, PointerSize pointer_size) const { in GetMethod()
190 return reinterpret_cast64<ArtMethod*>(data64_[index]); in GetMethod()
192 return reinterpret_cast32<ArtMethod*>(data32_[index]); in GetMethod()
196 void SetMethod(size_t index, PointerSize pointer_size, ArtMethod* method) { in SetMethod()