Searched refs:kLocal (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | indirect_reference_table.cc | 48 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()
|
D | indirect_reference_table.h | 70 kLocal = 1, // <<local reference>> enumerator 225 static_assert((mask & kLocal) == 0u); in GetGlobalOrWeakGlobalMask()
|
D | reflection.cc | 1068 if (kind == kLocal) { in UpdateReference()
|
D | thread.cc | 2829 DCHECK_NE(kind, kLocal); in DecodeGlobalJObject()
|
/art/runtime/jni/ |
D | local_reference_table.h | 303 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()
|
D | local_reference_table.cc | 371 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()
|
D | local_reference_table-inl.h | 66 DCHECK_EQ(IndirectReferenceTable::GetIndirectRefKind(iref), kLocal); in GetReferenceEntryIndex()
|
D | check_jni.cc | 61 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()
|
D | jni_internal.cc | 2851 case kLocal: in GetObjectRefType()
|