Home
last modified time | relevance | path

Searched refs:globals_ (Results 1 – 5 of 5) sorted by relevance

/aosp12/system/unwinding/libunwindstack/tests/
H A DElfFake.cpp48 auto entry = globals_.find(global); in GetGlobalVariable()
49 if (entry == globals_.end()) { in GetGlobalVariable()
H A DElfFake.h83 globals_[global] = offset; in FakeSetGlobalVariable()
115 std::unordered_map<std::string, uint64_t> globals_;
/aosp12/art/runtime/jni/
H A Djava_vm_ext.cc501 globals_(kGlobalsMax, kGlobal, IndirectReferenceTable::ResizableCapacity::kNo, error_msg), in JavaVMExt()
532 if (java_vm && java_vm->globals_.IsValid() && java_vm->weak_globals_.IsValid()) { in Create()
634 size_t simple_free_capacity = globals_.FreeCapacity(); in CheckGlobalRefAllocationTracking()
672 ref = globals_.Add(kIRTFirstSegment, obj, &error_msg); in AddGlobalRef()
711 if (!globals_.Remove(kIRTFirstSegment, obj)) { in DeleteGlobalRef()
752 os << "; globals=" << globals_.Capacity(); in DumpForSigQuit()
794 return globals_.SynchronizedGet(ref); in DecodeGlobal()
799 globals_.Update(ref, result); in UpdateGlobal()
879 globals_.Dump(os); in DumpReferenceTables()
1173 globals_.Trim(); in TrimGlobals()
[all …]
H A Djava_vm_ext.h242 IndirectReferenceTable globals_; variable
H A Dcheck_jni.cc63 : ((kind == kGlobal) ? &env->vm_->globals_ : &env->vm_->weak_globals_); in GetIndirectReferenceTable()