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

/dalvik/libcore/luni-kernel/src/main/java/java/lang/ref/
H A DReference.java49 * VM requirement: this field <em>must</em> be called "referent"
52 volatile T referent; field in class:Reference
56 * when the referent is appropriately reachable.
87 * Makes the referent {@code null}. This does not force the reference
93 referent = null;
139 * Returns the referent of the reference object.
141 * @return the referent to which reference refers, or {@code null} if the
147 return referent;
/dalvik/hit/src/com/android/hit/
H A DArrayInstance.java139 public String describeReferenceTo(long referent) { argument
142 return super.describeReferenceTo(referent);
166 if (id == referent) {
181 return super.describeReferenceTo(referent);
H A DClassInstance.java157 public String describeReferenceTo(long referent) { argument
185 if (id == referent) {
203 return super.describeReferenceTo(referent);
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/ref/
H A DReferenceTest.java49 public TestWeakReference(T referent) { argument
50 super(referent);
53 public TestWeakReference(T referent, ReferenceQueue<? super T> q) { argument
54 super(referent, q);
385 * Checks to make sure that the referent of the WeakReference
392 "Checks to make sure that the referent of the WeakReference " +
404 public TestObject(String referent) {
405 stringRef = new WeakReference<String>(referent);
410 /* If a VM bug has caused the referent to get
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DProcessManager.java332 public ProcessReference(ProcessImpl referent, argument
334 super(referent, referenceQueue);
335 this.processId = referent.id;
/dalvik/vm/alloc/
H A DMarkSweep.c547 Object *referent; local
552 * mark the "referent" field; we need to handle
555 * If the referent already has a strong mark (isMarked(referent)),
558 referent = dvmGetFieldObject(obj,
560 if (referent != NULL &&
561 !isMarked(ptr2chunk(referent), &gcHeap->markContext))
569 * behavior, just mark the referent. This should
573 markObjectNonNull(referent, ctx);
586 * referent does
797 Object *referent; local
909 Object *referent; local
[all...]

Completed in 208 milliseconds