Home
last modified time | relevance | path

Searched defs:iref (Results 1 – 8 of 8) sorted by relevance

/art/runtime/jni/
Dlocal_reference_table-inl.h65 inline uint32_t LocalReferenceTable::GetReferenceEntryIndex(IndirectRef iref) const { in GetReferenceEntryIndex()
89 inline bool LocalReferenceTable::IsValidReference(IndirectRef iref, in IsValidReference()
131 inline void LocalReferenceTable::DCheckValidReference(IndirectRef iref) const { in DCheckValidReference()
141 inline ObjPtr<mirror::Object> LocalReferenceTable::Get(IndirectRef iref) const { in Get()
146 inline void LocalReferenceTable::Update(IndirectRef iref, ObjPtr<mirror::Object> obj) { in Update()
Djni_env_ext-inl.h53 inline void JNIEnvExt::UpdateLocal(IndirectRef iref, ObjPtr<mirror::Object> obj) { in UpdateLocal()
Dlocal_reference_table_test.cc582 IndirectRef iref = lrt.Add(c.Get(), &error_msg); in TestAddRemove() local
590 #define ADD_REF(iref, obj, expected_capacity) \ in TestAddRemove() argument
597 #define REMOVE_REF(iref, expected_capacity) \ in TestAddRemove() argument
716 #define ADD_REF(iref, obj) \ in TestAddRemoveMixed() argument
Dlocal_reference_table.h407 static LrtEntry* ToLrtEntry(IndirectRef iref) { in ToLrtEntry()
Dlocal_reference_table.cc418 bool LocalReferenceTable::Remove(IndirectRef iref) { in Remove()
/art/runtime/
Dindirect_reference_table-inl.h36 inline bool IndirectReferenceTable::IsValidReference(IndirectRef iref, in IsValidReference()
65 IndirectRef iref, in CheckEntry()
82 inline ObjPtr<mirror::Object> IndirectReferenceTable::Get(IndirectRef iref) const { in Get()
93 inline void IndirectReferenceTable::Update(IndirectRef iref, ObjPtr<mirror::Object> obj) { in Update()
Dindirect_reference_table.h217 ALWAYS_INLINE static inline IndirectRefKind GetIndirectRefKind(IndirectRef iref) { in GetIndirectRefKind()
231 static bool IsGlobalOrWeakGlobalReference(IndirectRef iref) { in IsGlobalOrWeakGlobalReference()
235 static bool IsJniTransitionOrLocalReference(IndirectRef iref) { in IsJniTransitionOrLocalReference()
240 static T ClearIndirectRefKind(IndirectRef iref) { in ClearIndirectRefKind()
296 ALWAYS_INLINE static uint32_t ExtractIndex(IndirectRef iref) { in ExtractIndex()
Dindirect_reference_table.cc235 bool IndirectReferenceTable::Remove(IndirectRef iref) { in Remove()