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

/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicMarkableReference.java93 * @param newMark the new value for the mark
99 boolean newMark) {
101 expectedMark, newMark);
113 * @param newMark the new value for the mark
119 boolean newMark) {
125 newMark == current.mark) ||
126 casPair(current, Pair.of(newReference, newMark)));
133 * @param newMark the new value for the mark
135 public void set(V newReference, boolean newMark) { argument
137 if (newReference != current.reference || newMark !
96 weakCompareAndSet(V expectedReference, V newReference, boolean expectedMark, boolean newMark) argument
116 compareAndSet(V expectedReference, V newReference, boolean expectedMark, boolean newMark) argument
154 attemptMark(V expectedReference, boolean newMark) argument
[all...]

Completed in 67 milliseconds