Lines Matching refs:iftable
5091 Handle<mirror::IfTable> iftable(hs.NewHandle(AllocIfTable(self, ifcount))); in LinkInterfaceMethods() local
5092 if (UNLIKELY(iftable.Get() == nullptr)) { in LinkInterfaceMethods()
5100 iftable->SetInterface(i, super_interface); in LinkInterfaceMethods()
5111 mirror::Class* existing_interface = iftable->GetInterface(j); in LinkInterfaceMethods()
5119 iftable->SetInterface(idx++, interface); in LinkInterfaceMethods()
5125 mirror::Class* existing_interface = iftable->GetInterface(k); in LinkInterfaceMethods()
5132 iftable->SetInterface(idx++, super_interface); in LinkInterfaceMethods()
5140 iftable.Assign(down_cast<mirror::IfTable*>(iftable->CopyOf(self, idx * mirror::IfTable::kMax))); in LinkInterfaceMethods()
5141 if (UNLIKELY(iftable.Get() == nullptr)) { in LinkInterfaceMethods()
5149 klass->SetIfTable(iftable.Get()); in LinkInterfaceMethods()
5172 mirror::Class* interface = iftable->GetInterface(i); in LinkInterfaceMethods()
5198 size_t num_methods = iftable->GetInterface(i)->NumVirtualMethods(); in LinkInterfaceMethods()
5225 iftable->SetMethodArray(i, method_array.Get()); in LinkInterfaceMethods()
5232 mirror::ArtMethod* interface_method = iftable->GetInterface(i)->GetVirtualMethod(j); in LinkInterfaceMethods()