Searched defs:referent (Results 1 - 2 of 2) sorted by relevance

/art/runtime/gc/collector/
H A Dmark_sweep.cc1329 // Process the "referent" field in a java.lang.ref.Reference. If the
1330 // referent has not yet been marked, put it on the appropriate list in
1336 Object* referent = heap_->GetReferenceReferent(obj); local
1337 if (referent != NULL && !IsMarked(referent)) {
1462 // reference clearing policy. References with a black referent are
1475 Object* referent = heap_->GetReferenceReferent(ref); local
1476 if (referent == NULL) {
1480 bool is_marked = IsMarked(referent);
1483 MarkObject(referent);
1517 Object* referent = heap_->GetReferenceReferent(ref); local
1539 Object* referent = heap_->GetReferenceReferent(ref); local
[all...]
/art/runtime/
H A Dclass_linker.cc496 mirror::ArtField* referent = java_lang_ref_Reference->GetInstanceField(3); local
497 fh.ChangeField(referent);
498 CHECK_STREQ(fh.GetName(), "referent");
507 heap->SetReferenceOffsets(referent->GetOffset(),
3846 // We lie to the GC about the java.lang.ref.Reference.referent field, so it doesn't scan it.
3850 // that 'referent' is alphabetically last, so this is easy...
3853 CHECK_STREQ(fh.GetName(), "referent");
3874 StringPiece(fh.GetName()) == "referent") {

Completed in 76 milliseconds