HomeSort by relevance Sort by last modified time
    Searched refs:referent (Results 1 - 18 of 18) sorted by null

  /libcore/luni/src/main/java/java/lang/ref/
Reference.java 47 * VM requirement: this field <em>must</em> be called "referent"
50 volatile T referent; field in class:Reference
54 * when the referent is appropriately reachable.
86 referent = r;
91 * Makes the referent {@code null}. This does not force the reference
95 referent = null;
127 * Returns the referent of the reference object.
129 * @return the referent to which reference refers, or {@code null} if the
133 return referent;
FinalizerReference.java 47 static void add(Object referent) {
48 FinalizerReference<?> reference = new FinalizerReference<Object>(referent, queue);
  /external/guava/src/com/google/common/base/
FinalizablePhantomReference.java 24 * referent. This is a simpler alternative to using a {@link
39 * @param referent to phantom reference
40 * @param queue that should finalize the referent
42 protected FinalizablePhantomReference(T referent,
44 super(referent, queue.queue);
FinalizableSoftReference.java 23 * thread invokes after the garbage collector reclaims the referent. This is a
35 * @param referent to softly reference
36 * @param queue that should finalize the referent
38 protected FinalizableSoftReference(T referent,
40 super(referent, queue.queue);
FinalizableWeakReference.java 23 * thread invokes after the garbage collector reclaims the referent. This is a
35 * @param referent to weakly reference
36 * @param queue that should finalize the referent
38 protected FinalizableWeakReference(T referent,
40 super(referent, queue.queue);
  /dalvik/hit/src/com/android/hit/
ArrayInstance.java 139 public String describeReferenceTo(long referent) {
142 return super.describeReferenceTo(referent);
166 if (id == referent) {
181 return super.describeReferenceTo(referent);
ClassInstance.java 157 public String describeReferenceTo(long referent) {
185 if (id == referent) {
203 return super.describeReferenceTo(referent);
  /libcore/luni/src/test/java/tests/api/java/lang/ref/
ReferenceTest.java 41 public TestWeakReference(T referent) {
42 super(referent);
45 public TestWeakReference(T referent, ReferenceQueue<? super T> q) {
46 super(referent, q);
96 assertNull("Referent is not null.", pr.get());
102 assertNull("Referent is not null.", pr.get());
282 * Checks to make sure that the referent of the WeakReference
292 public TestObject(String referent) {
293 stringRef = new WeakReference<String>(referent);
298 /* If a VM bug has caused the referent to ge
    [all...]
PhantomReferenceTest.java 24 //TODO: write a test to verify that the referent's finalize() happens
53 public TestPhantomReference(T referent,
55 super(referent, q);
  /dalvik/vm/alloc/
MarkSweep.cpp 404 * Process the "referent" field in a java.lang.ref.Reference. If the
405 * referent has not yet been marked, put it on the appropriate list in
418 Object *referent = dvmGetFieldObject(obj, referentOffset); local
419 if (pending == NULL && referent != NULL && !isMarked(referent, ctx)) {
630 * Clear the referent field.
665 * reference clearing policy. References with a black referent are
678 Object *referent = dvmGetFieldObject(ref, referentOffset); local
679 if (referent == NULL) {
680 /* Referent was cleared by the user during marking. *
714 Object *referent = dvmGetFieldObject(ref, referentOffset); local
740 Object *referent = dvmGetFieldObject(ref, referentOffset); local
    [all...]
Copying.cpp 1009 * Sets the referent field of a reference object to NULL.
1030 Object *referent = field->l;
1033 assert(referent != NULL);
1034 if (isForward(referent->clazz)) {
1035 field->l = referent = getForward(referent->clazz);
1038 if (fromSpaceContains(referent)) {
1039 /* Referent is white, clear it. */
1076 Object *referent = field->l;
1078 assert(referent != NULL)
    [all...]
CardTable.cpp 258 * just the referent is unmarked.
270 const Object *referent = dvmGetFieldObject(obj, offset); local
271 return !dvmHeapBitmapIsObjectBitSet(ctx->markBits, referent);
  /libcore/luni/src/main/java/java/lang/
ProcessManager.java 315 public ProcessReference(ProcessImpl referent, ProcessReferenceQueue referenceQueue) {
316 super(referent, referenceQueue);
317 this.processId = referent.pid;
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /external/guava/src/com/google/common/collect/
MapMaker.java 1100 final V referent; field in class:MapMaker.StrongValueReference
    [all...]
  /external/emma/core/java12/com/vladium/util/
SoftValueMap.java 430 IndexedSoftReference (final Object referent, ReferenceQueue queue, final int bucketIndex)
432 super (referent, queue);
  /external/emma/lib/
emma.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 1607 milliseconds