Home
last modified time | relevance | path

Searched refs:ASYNC (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DLinkedTransferQueue.java585 private static final int ASYNC = 1; // for offer, put, add field in LinkedTransferQueue
639 if (how != ASYNC) in xfer()
1249 xfer(e, true, ASYNC, 0); in put()
1263 xfer(e, true, ASYNC, 0); in offer()
1275 xfer(e, true, ASYNC, 0); in offer()
1288 xfer(e, true, ASYNC, 0); in add()
DCompletableFuture.java423 static final int ASYNC = 1; field in CompletableFuture
450 public final void run() { tryFire(ASYNC); } in run()
451 public final boolean exec() { tryFire(ASYNC); return false; } in exec()
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java646 ASYNC {
1206 ExecutionMode.ASYNC, in testRunAsync_normalCompletion()
1223 ExecutionMode.ASYNC, in testRunAsync_exceptionalCompletion()
1239 ExecutionMode.ASYNC, in testSupplyAsync_normalCompletion()
1257 ExecutionMode.ASYNC, in testSupplyAsync_exceptionalCompletion()