Home | History | Annotate | Download | only in concurrent

Lines Matching refs:xfer

277      * "xfer" with parameters indicating whether to act as some form
284 * implemented within method xfer, the second in tryAppend, and
582 * Possible values for "how" argument in xfer method.
599 private E xfer(E e, boolean haveData, int how, long nanos) {
1249 xfer(e, true, ASYNC, 0);
1263 xfer(e, true, ASYNC, 0);
1275 xfer(e, true, ASYNC, 0);
1288 xfer(e, true, ASYNC, 0);
1303 return xfer(e, true, NOW, 0) == null;
1318 if (xfer(e, true, SYNC, 0) != null) {
1340 if (xfer(e, true, TIMED, unit.toNanos(timeout)) == null)
1348 E e = xfer(null, false, SYNC, 0);
1356 E e = xfer(null, false, TIMED, unit.toNanos(timeout));
1363 return xfer(null, false, NOW, 0);