/art/runtime/native/ |
java_lang_ref_Reference.cc | 32 Runtime::Current()->GetHeap()->GetReferenceProcessor()->GetReferent(soa.Self(), ref); 37 NATIVE_METHOD(Reference, getReferent, "!()Ljava/lang/Object;"),
|
/art/runtime/gc/ |
reference_processor.h | 56 // GetReferent fast path as an optimization. 60 mirror::Object* GetReferent(Thread* self, mirror::Reference* reference) 84 // Collector which is clearing references, used by the GetReferent to return referents which are 88 // If this is true, then we cannot return a referent (see comment in GetReferent).
|
reference_processor.cc | 63 mirror::Object* ReferenceProcessor::GetReferent(Thread* self, mirror::Reference* reference) { 65 // Under read barrier / concurrent copying collector, it's not safe to call GetReferent() when 68 mirror::Object* const referent = reference->GetReferent(); 103 return reference->GetReferent();
|
reference_queue.cc | 96 mirror::Object* referent = ref->GetReferent<kWithoutReadBarrier>();
|
heap.cc | [all...] |
/art/tools/ahat/test/ |
InstanceUtilsTest.java | 122 assertEquals(referent, InstanceUtils.getReferent(pref)); 123 assertEquals(referent, InstanceUtils.getReferent(wref)); 124 assertNull(InstanceUtils.getReferent(referent));
|
/libcore/ojluni/src/main/java/java/lang/ref/ |
Reference.java | 96 return getReferent(); 99 private final native T getReferent();
|
/art/runtime/mirror/ |
reference.h | 66 Object* GetReferent() SHARED_REQUIRES(Locks::mutator_lock_) {
|
/art/tools/ahat/src/ |
Value.java | 67 Instance referent = InstanceUtils.getReferent(inst);
|
InstanceUtils.java | 269 public static Instance getReferent(Instance inst) { 349 referent = InstanceUtils.getReferent(ref);
|
/art/runtime/gc/accounting/ |
remembered_set.cc | 82 if (target_space_->HasAddress(ref->GetReferent())) {
|
/art/runtime/interpreter/ |
unstarted_runtime_list.h | 58 V(ReferenceGetReferent, "java.lang.Object java.lang.ref.Reference.getReferent()") \
|
unstarted_runtime.cc | [all...] |
/art/runtime/gc/collector/ |
concurrent_copying.cc | 410 // objects, aside from weak ref accesses with read barriers (Reference::GetReferent() and system [all...] |
mark_sweep.cc | 211 // is no lock in the GetReferent fast path. [all...] |
/art/compiler/dex/quick/ |
dex_file_method_inliner.cc | 266 "getReferent", // kNameCacheReferenceGet [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
shlobj.h | 548 STDMETHOD(GetReferent)(THIS_ LPSTR pszReferent,int cchReferent) PURE; 562 STDMETHOD(GetReferent)(THIS_ LPWSTR pszReferent,int cchReferent) PURE; [all...] |
/art/patchoat/ |
patchoat.cc | 686 mirror::Object* referent = ref->GetReferent(); [all...] |
/art/runtime/ |
thread.h | [all...] |
/art/runtime/gc/space/ |
image_space.cc | 797 mirror::Object* obj = ref->GetReferent<kWithoutReadBarrier>(); [all...] |
/art/compiler/ |
image_writer.cc | [all...] |