Searched refs:locals (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | jni_internal-inl.h | 28 IndirectRef ref = locals.Add(local_ref_cookie, obj); in AddLocalReference() 33 size_t entry_count = locals.Capacity(); in AddLocalReference() 35 locals.Dump(LOG(WARNING) << "Warning: more than 16 JNI local references: " in AddLocalReference()
|
D | jni_internal.h | 174 IndirectReferenceTable locals GUARDED_BY(Locks::mutator_lock_); 203 env->local_ref_cookie = env->locals.GetSegmentState(); in ScopedJniEnvLocalRefState() 207 env_->locals.SetSegmentState(env_->local_ref_cookie); in ~ScopedJniEnvLocalRefState()
|
D | jni_internal.cc | 851 IndirectReferenceTable& locals = reinterpret_cast<JNIEnvExt*>(env)->locals; in DeleteLocalRef() local 854 if (!locals.Remove(cookie, obj)) { in DeleteLocalRef() 2540 if (static_cast<JNIEnvExt*>(env)->locals.Get<kWithoutReadBarrier>(ref) != in GetObjectRefType() 2570 const size_t capacity = soa.Env()->locals.Capacity(); in EnsureLocalCapacity() 2959 locals(kLocalsInitial, kLocalsMax, kLocal), in JNIEnvExt() 2976 return reinterpret_cast<jobject>(locals.Add(local_ref_cookie, obj)); in NewLocalRef() 2981 locals.Remove(local_ref_cookie, reinterpret_cast<IndirectRef>(obj)); in DeleteLocalRef() 2990 locals.Dump(os); in DumpReferenceTables() 2998 local_ref_cookie = locals.GetSegmentState(); in PushFrame() 3002 locals.SetSegmentState(local_ref_cookie); in PopFrame() [all …]
|
D | thread.cc | 1344 IndirectReferenceTable& locals = tlsPtr_.jni_env->locals; in DecodeJObject() local 1346 result = locals.Get<kWithoutReadBarrier>(ref); in DecodeJObject() 2206 tlsPtr_.jni_env->locals.VisitRoots(visitor, arg, RootInfo(kRootJNILocal, thread_id)); in VisitRoots()
|
D | runtime.cc | 461 self->GetJniEnv()->locals.AssertEmpty(); in Start()
|
/art/runtime/entrypoints/portable/ |
D | portable_jni_entrypoints.cc | 29 env->local_ref_cookie = env->locals.GetSegmentState(); in art_portable_jni_method_start() 43 env->locals.SetSegmentState(env->local_ref_cookie); in PopLocalReferences()
|
/art/runtime/entrypoints/quick/ |
D | quick_jni_entrypoints.cc | 35 env->local_ref_cookie = env->locals.GetSegmentState(); in JniMethodStart() 66 env->locals.SetSegmentState(env->local_ref_cookie); in PopLocalReferences()
|
/art/test/056-const-string-jumbo/ |
D | build | 45 ${DX} -JXmx500m --debug --dex --no-optimize --positions=none --no-locals --output=classes.dex class…
|
/art/runtime/gc/ |
D | heap.cc | 1009 thread->GetJniEnv()->locals.Trim(); in Run()
|