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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DLinkedTransferQueue.java452 final boolean isData; // false if this is a request node field in class:LinkedTransferQueue.Node
453 volatile Object item; // initially non-null if isData; CASed to match
471 Node(Object item, boolean isData) { argument
473 this.isData = isData;
504 return (x == this) || ((x == null) == isData);
511 return !isData && item == null;
520 boolean d = isData;
529 // assert isData;
608 boolean isData
[all...]
H A DSynchronousQueue.java540 final boolean isData; field in class:SynchronousQueue.TransferQueue.QNode
542 QNode(Object item, boolean isData) { argument
544 this.isData = isData;
668 boolean isData = (e != null);
676 if (h == t || t.isData == isData) { // empty or same-mode
687 s = new QNode(e, isData);
712 if (isData == (x != null) || // m already fulfilled

Completed in 150 milliseconds