Lines Matching refs:interface

6272       ObjPtr<mirror::Class> interface = ResolveType(idx, klass.Get());  in LoadSuperAndInterfaces()  local
6273 if (interface == nullptr) { in LoadSuperAndInterfaces()
6278 if (!klass->CanAccess(interface)) { in LoadSuperAndInterfaces()
6282 interface->PrettyDescriptor().c_str(), in LoadSuperAndInterfaces()
7115 ObjPtr<mirror::Class> interface = if_table->GetInterface(i); in FillIMTFromIfTable() local
7116 const size_t num_virtuals = interface->NumVirtualMethods(); in FillIMTFromIfTable()
7124 DCHECK_EQ(interface->NumDeclaredVirtualMethods(), method_array_count); in FillIMTFromIfTable()
7142 ArtMethod* interface_method = interface->GetVirtualMethod(j, image_pointer_size_); in FillIMTFromIfTable()
7182 ObjPtr<mirror::Class> interface = if_table->GetInterface(i); in FillIMTFromIfTable() local
7196 ArtMethod* interface_method = interface->GetVirtualMethod(j, image_pointer_size_); in FillIMTFromIfTable()
7262 for (ObjPtr<mirror::Class> interface : to_process) { in FillIfTable()
7270 if (!ContainsElement(classes_in_iftable, interface)) { in FillIfTable()
7273 int32_t ifcount = interface->GetIfTableCount(); in FillIfTable()
7275 ObjPtr<mirror::Class> super_interface = interface->GetIfTable()->GetInterface(j); in FillIfTable()
7283 DCHECK(NotSubinterfaceOfAny(classes_in_iftable, interface)) << "Bad ordering"; in FillIfTable()
7285 classes_in_iftable.insert(interface); in FillIfTable()
7286 iftable->SetInterface(filled_ifcount, interface); in FillIfTable()
7290 int32_t ifcount = interface->GetIfTableCount(); in FillIfTable()
7292 ObjPtr<mirror::Class> super_interface = interface->GetIfTable()->GetInterface(j); in FillIfTable()
7295 << ", a superinterface of " << interface->PrettyClass(); in FillIfTable()
7352 ObjPtr<mirror::Class> interface = have_interfaces in SetupInterfaceLookupTable() local
7355 DCHECK(interface != nullptr); in SetupInterfaceLookupTable()
7356 if (UNLIKELY(!interface->IsInterface())) { in SetupInterfaceLookupTable()
7361 PrettyDescriptor(interface->GetDescriptor(&temp)).c_str()); in SetupInterfaceLookupTable()
7364 ifcount += interface->GetIfTableCount(); in SetupInterfaceLookupTable()
7391 ObjPtr<mirror::Class> interface = have_interfaces ? interfaces->Get(i) : in SetupInterfaceLookupTable() local
7393 to_add.push_back(interface); in SetupInterfaceLookupTable()