Searched refs:sentinel (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/lang/ref/
H A DFinalizerReference.java86 // Alloate a new sentinel, this creates a FinalizerReference.
87 Sentinel sentinel;
88 // Keep looping until we safely enqueue our sentinel FinalizerReference.
92 sentinel = new Sentinel();
93 } while (!enqueueSentinelReference(sentinel));
94 sentinel.awaitFinalization(timeout);
97 private static boolean enqueueSentinelReference(Sentinel sentinel) { argument
103 if (r.referent == sentinel) {
106 sentinelReference.zombie = sentinel;
110 // yet on the finalizer queue. This could cause the sentinel t
[all...]
/libcore/luni/src/test/java/libcore/xml/
H A DSaxTest.java215 * @param sentinel a marker value that means the expected value was omitted
217 private void assertOneOf(String expected, String sentinel, String actual) { argument
218 List<String> optionsList = Arrays.asList(sentinel, expected);

Completed in 285 milliseconds