Home
last modified time | relevance | path

Searched refs:IfTable (Results 1 – 10 of 10) sorted by relevance

/art/runtime/mirror/
Diftable.h26 class MANAGED IfTable FINAL : public ObjectArray<Object> {
73 DISALLOW_IMPLICIT_CONSTRUCTORS(IfTable);
Diftable-inl.h25 inline void IfTable::SetInterface(int32_t i, Class* interface) { in SetInterface()
Dclass-inl.h208 IfTable* iftable = GetIfTable(); in Implements()
361 IfTable* iftable = GetIfTable(); in FindVirtualMethodForInterface()
392 inline IfTable* Class::GetIfTable() { in GetIfTable()
393 return GetFieldObject<IfTable>(OFFSET_OF_OBJECT_MEMBER(Class, iftable_)); in GetIfTable()
397 IfTable* iftable = GetIfTable(); in GetIfTableCount()
404 inline void Class::SetIfTable(IfTable* new_iftable) { in SetIfTable()
Dclass.h77 class IfTable; variable
793 IfTable* GetIfTable() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
795 void SetIfTable(IfTable* new_iftable) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
1078 HeapReference<IfTable> iftable_;
Dclass.cc370 IfTable* iftable = GetIfTable(); in FindInterfaceMethod()
388 IfTable* iftable = GetIfTable(); in FindInterfaceMethod()
406 IfTable* iftable = GetIfTable(); in FindInterfaceMethod()
Dart_method.cc147 IfTable* iftable = GetDeclaringClass()->GetIfTable(); in FindOverriddenMethod()
/art/runtime/
Dclass_linker-inl.h180 inline mirror::IfTable* ClassLinker::AllocIfTable(Thread* self, size_t ifcount) { in AllocIfTable()
181 return down_cast<mirror::IfTable*>( in AllocIfTable()
182 mirror::IfTable::Alloc(self, GetClassRoot(kObjectArrayClass), in AllocIfTable()
183 ifcount * mirror::IfTable::kMax)); in AllocIfTable()
Dclass_linker.h45 class IfTable; variable
311 mirror::IfTable* AllocIfTable(Thread* self, size_t ifcount)
751 GcRoot<mirror::IfTable> array_iftable_;
Dclass_linker.cc299 array_iftable_ = GcRoot<mirror::IfTable>(AllocIfTable(self, 2)); in InitWithoutImage()
444 mirror::IfTable* array_iftable = array_iftable_.Read(); in InitWithoutImage()
1654 array_iftable_ = GcRoot<mirror::IfTable>(GetClassRoot(kObjectArrayClass)->GetIfTable()); in InitFromImage()
3164 mirror::IfTable* array_iftable = array_iftable_.Read(); in CreateArrayClass()
4690 mirror::IfTable* super_iftable = klass->GetSuperClass()->GetIfTable(); in LinkInterfaceMethods()
4704 Handle<mirror::IfTable> iftable(hs.NewHandle(AllocIfTable(self, ifcount))); in LinkInterfaceMethods()
4710 mirror::IfTable* super_iftable = klass->GetSuperClass()->GetIfTable(); in LinkInterfaceMethods()
4761 iftable.Assign(down_cast<mirror::IfTable*>(iftable->CopyOf(self, idx * mirror::IfTable::kMax))); in LinkInterfaceMethods()
Dclass_linker_test.cc225 mirror::IfTable* iftable = klass->GetIfTable(); in AssertClass()