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> {
74 DISALLOW_IMPLICIT_CONSTRUCTORS(IfTable);
Diftable-inl.h25 inline void IfTable::SetInterface(int32_t i, Class* interface) { in SetInterface()
Dclass-inl.h199 IfTable* iftable = GetIfTable(); in Implements()
352 IfTable* iftable = GetIfTable(); in FindVirtualMethodForInterface()
383 inline IfTable* Class::GetIfTable() { in GetIfTable()
384 return GetFieldObject<IfTable>(OFFSET_OF_OBJECT_MEMBER(Class, iftable_)); in GetIfTable()
388 IfTable* iftable = GetIfTable(); in GetIfTableCount()
395 inline void Class::SetIfTable(IfTable* new_iftable) { in SetIfTable()
Dclass.h82 class IfTable; variable
803 ALWAYS_INLINE IfTable* GetIfTable() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
805 ALWAYS_INLINE void SetIfTable(IfTable* new_iftable) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
1111 HeapReference<IfTable> iftable_;
Dclass.cc369 IfTable* iftable = GetIfTable(); in FindInterfaceMethod()
387 IfTable* iftable = GetIfTable(); in FindInterfaceMethod()
405 IfTable* iftable = GetIfTable(); in FindInterfaceMethod()
Dart_method.cc126 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.h46 class IfTable; variable
315 mirror::IfTable* AllocIfTable(Thread* self, size_t ifcount)
803 GcRoot<mirror::IfTable> array_iftable_;
Dclass_linker.cc292 array_iftable_ = GcRoot<mirror::IfTable>(AllocIfTable(self, 2)); in InitWithoutImage()
436 mirror::IfTable* array_iftable = array_iftable_.Read(); in InitWithoutImage()
1684 array_iftable_ = GcRoot<mirror::IfTable>(GetClassRoot(kObjectArrayClass)->GetIfTable()); in InitFromImage()
3206 mirror::IfTable* array_iftable = array_iftable_.Read(); in CreateArrayClass()
5064 mirror::IfTable* super_iftable = klass->GetSuperClass()->GetIfTable(); in LinkInterfaceMethods()
5091 Handle<mirror::IfTable> iftable(hs.NewHandle(AllocIfTable(self, ifcount))); in LinkInterfaceMethods()
5097 mirror::IfTable* super_iftable = klass->GetSuperClass()->GetIfTable(); in LinkInterfaceMethods()
5140 iftable.Assign(down_cast<mirror::IfTable*>(iftable->CopyOf(self, idx * mirror::IfTable::kMax))); in LinkInterfaceMethods()
5168 mirror::IfTable* if_table = super_class->GetIfTable(); in LinkInterfaceMethods()
5206 mirror::IfTable* if_table = klass->GetSuperClass()->GetIfTable(); in LinkInterfaceMethods()
Dclass_linker_test.cc224 mirror::IfTable* iftable = klass->GetIfTable(); in AssertClass()