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

/art/runtime/mirror/
H A Diftable-inl.h25 inline void IfTable::SetInterface(int32_t i, Class* interface) {
H A Diftable.h25 class MANAGED IfTable : public ObjectArray<Object> { class in namespace:art::mirror
73 DISALLOW_IMPLICIT_CONSTRUCTORS(IfTable);
H A Dclass-inl.h150 IfTable* iftable = GetIfTable();
217 IfTable* iftable = GetIfTable();
250 inline IfTable* Class::GetIfTable() const {
251 return GetFieldObject<IfTable*>(OFFSET_OF_OBJECT_MEMBER(Class, iftable_), false);
255 IfTable* iftable = GetIfTable();
262 inline void Class::SetIfTable(IfTable* new_iftable) {
H A Dclass.h69 class IfTable;
598 IfTable* GetIfTable() const;
600 void SetIfTable(IfTable* new_iftable) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
804 IfTable* iftable_;
H A Dclass.cc345 IfTable* iftable = GetIfTable();
363 IfTable* iftable = GetIfTable();
H A Dart_method.cc127 IfTable* iftable = GetDeclaringClass()->GetIfTable();
/art/runtime/
H A Dclass_linker-inl.h118 inline mirror::IfTable* ClassLinker::AllocIfTable(Thread* self, size_t ifcount) {
119 return down_cast<mirror::IfTable*>(
120 mirror::IfTable::Alloc(self, GetClassRoot(kObjectArrayClass), ifcount * mirror::IfTable::kMax));
H A Dclass_linker.h41 class IfTable;
299 mirror::IfTable* AllocIfTable(Thread* self, size_t ifcount)
613 mirror::IfTable* array_iftable_;
H A Dclass_linker.cc3153 mirror::IfTable* iftable = klass->GetIfTable();
3506 mirror::IfTable* super_iftable = klass->GetSuperClass()->GetIfTable();
3520 SirtRef<mirror::IfTable> iftable(self, AllocIfTable(self, ifcount));
3526 mirror::IfTable* super_iftable = klass->GetSuperClass()->GetIfTable();
3575 iftable.reset(down_cast<mirror::IfTable*>(iftable->CopyOf(self, idx * mirror::IfTable::kMax)));
H A Dclass_linker_test.cc141 mirror::IfTable* iftable = array->GetIfTable();
216 const mirror::IfTable* iftable = klass->GetIfTable();

Completed in 131 milliseconds