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.cc1067 if (kind == kLocal) { in UpdateReference()
Dthread.cc2786 DCHECK_NE(kind, kLocal); in DecodeGlobalJObject()
/art/runtime/jni/
Dlocal_reference_table.h303 return kLocal; in GetKind()
384 reinterpret_cast<uintptr_t>(entry) | static_cast<uintptr_t>(kLocal)); in ToIndirectRef()
388 DCHECK_EQ(IndirectReferenceTable::GetIndirectRefKind(iref), kLocal); in ToLrtEntry()
Dlocal_reference_table.cc373 oss << "JNI ERROR (app bug): " << kLocal << " table overflow " in Add()
384 oss << "JNI ERROR (app bug): " << kLocal << " table overflow " in Add()
427 if (UNLIKELY(kind != kLocal)) { in Remove()
680 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()
882 } else if (ref_kind == kLocal) { in CheckInstance()
2145 return NewRef(__FUNCTION__, env, obj, kLocal); in NewLocalRef()
2161 DeleteRef(__FUNCTION__, env, obj, kLocal); in DeleteLocalRef()
2839 case kLocal: in NewRef()
2869 case kLocal: in DeleteRef()
Djni_internal.cc2842 case kLocal: in GetObjectRefType()