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

/libcore/luni/src/main/java/java/util/concurrent/
H A DLinkedTransferQueue.java423 final boolean isData; // false if this is a request node field in class:LinkedTransferQueue.Node
424 volatile Object item; // initially non-null if isData; CASed to match
442 Node(Object item, boolean isData) { argument
444 this.isData = isData;
475 return (x == this) || ((x == null) == isData);
482 return !isData && item == null;
491 boolean d = isData;
500 // assert isData;
579 boolean isData
[all...]
H A DSynchronousQueue.java511 final boolean isData; field in class:SynchronousQueue.TransferQueue.QNode
513 QNode(Object item, boolean isData) { argument
515 this.isData = isData;
639 boolean isData = (e != null);
647 if (h == t || t.isData == isData) { // empty or same-mode
658 s = new QNode(e, isData);
683 if (isData == (x != null) || // m already fulfilled

Completed in 47 milliseconds