Lines Matching defs:interface_method
32 // The table contains a list of pairs of { interface_method, implementation_method }
44 // the pair { `interface_method`, `implementation_method` }
46 ArtMethod* interface_method,
54 SetInterfaceMethod(count, pointer_size, interface_method);
115 ArtMethod* interface_method = GetInterfaceMethod(table_index, pointer_size);
116 if (interface_method == nullptr) {
120 auto input = std::make_pair(interface_method, implementation_method);
132 // Lookup the implementation ArtMethod associated to `interface_method`. Return null
134 ArtMethod* Lookup(ArtMethod* interface_method, PointerSize pointer_size) const {
141 if (current_interface_method == interface_method) {