Home
last modified time | relevance | path

Searched refs:kLocal (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dindirect_reference_table.cc48 case kLocal: in GetIndirectRefKindString()
90 CHECK_NE(kind, kLocal); in IndirectReferenceTable()
120 static_assert((EncodeIndirectRefKind(kLocal) & (~kKindMask)) == 0, "Kind encoding error"); in ConstexprChecks()
123 static_assert(DecodeIndirectRefKind(EncodeIndirectRefKind(kLocal)) == kLocal, in ConstexprChecks()
144 static_assert((GetGlobalOrWeakGlobalMask() & EncodeIndirectRefKind(kLocal)) == 0u); in ConstexprChecks()
Dindirect_reference_table.h70 kLocal = 1, // <<local reference>> enumerator
225 static_assert((mask & kLocal) == 0u); in GetGlobalOrWeakGlobalMask()
Dreflection.cc1068 if (kind == kLocal) { in UpdateReference()
Dthread.cc2829 DCHECK_NE(kind, kLocal); in DecodeGlobalJObject()
/art/runtime/jni/
Dlocal_reference_table.h303 return kLocal; in GetKind()
404 reinterpret_cast<uintptr_t>(entry) | static_cast<uintptr_t>(kLocal)); in ToIndirectRef()
408 DCHECK_EQ(IndirectReferenceTable::GetIndirectRefKind(iref), kLocal); in ToLrtEntry()
Dlocal_reference_table.cc371 oss << "JNI ERROR (app bug): " << kLocal << " table overflow " in Add()
382 oss << "JNI ERROR (app bug): " << kLocal << " table overflow " in Add()
425 if (UNLIKELY(kind != kLocal)) { in Remove()
685 os << kLocal << " table dump:\n"; in Dump()
Dlocal_reference_table-inl.h66 DCHECK_EQ(IndirectReferenceTable::GetIndirectRefKind(iref), kLocal); in GetReferenceEntryIndex()
Dcheck_jni.cc61 DCHECK_NE(kind, kLocal); in GetIndirectReferenceTable()
730 if (expected_kind == kLocal) { in CheckReferenceKind()
735 found_kind = kLocal; in CheckReferenceKind()
880 } else if (ref_kind == kLocal) { in CheckInstance()
2144 return NewRef(__FUNCTION__, env, obj, kLocal); in NewLocalRef()
2160 DeleteRef(__FUNCTION__, env, obj, kLocal); in DeleteLocalRef()
2838 case kLocal: in NewRef()
2868 case kLocal: in DeleteRef()
Djni_internal.cc2851 case kLocal: in GetObjectRefType()