Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/locks/
DAbstractQueuedLongSynchronizer.java1567 private void reportInterruptAfterWait(int interruptMode) in reportInterruptAfterWait() argument
1569 if (interruptMode == THROW_IE) in reportInterruptAfterWait()
1571 else if (interruptMode == REINTERRUPT) in reportInterruptAfterWait()
1593 int interruptMode = 0; in await() local
1596 if ((interruptMode = checkInterruptWhileWaiting(node)) != 0) in await()
1599 if (acquireQueued(node, savedState) && interruptMode != THROW_IE) in await()
1600 interruptMode = REINTERRUPT; in await()
1603 if (interruptMode != 0) in await()
1604 reportInterruptAfterWait(interruptMode); in await()
1630 int interruptMode = 0; in awaitNanos() local
[all …]